-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add support for php8 This will enable php-speller to be installed with php8. Also change the build on travis to add coverage for 7.4 and a new step on php8 * Remove getMessage from ExceptionInterface Remove this message, as it is not needed since it is coming from `Throwable`. Since PHP8 there needs to be a return type given or the declaration would fail. * Update CHANGELOG.md
- Loading branch information
1 parent
ad6e2b8
commit 85841c9
Showing
4 changed files
with
9 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,8 +21,4 @@ | |
*/ | ||
interface PhpSpellerException extends Throwable | ||
{ | ||
/** | ||
* @return string | ||
*/ | ||
public function getMessage(); | ||
} |