Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## 0.3.1 Under development

- Bug #14: Update descriptions in stub classes to clarify purpose (@terabytesoftw)
- Bug #15: Clarify parameter descriptions in `Message::getMessage()` method in `Message` enum (@terabytesoftw)

## 0.3.0 January 19, 2026

Expand Down
6 changes: 2 additions & 4 deletions src/Exception/Message.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,9 @@ enum Message: string
/**
* Returns the formatted message string for the error case.
*
* Retrieves and formats the error message string by interpolating the provided arguments.
* @param int|string ...$argument Values to insert into the message template.
*
* @param int|string ...$argument Dynamic arguments to insert into the message.
*
* @return string Error message with interpolated arguments.
* @return string Formatted error message with interpolated arguments.
*
* Usage example:
* ```php
Expand Down
Loading