Skip to content

Commit

Permalink
PHP 8.4: Fix E_STRICT deprecation (#34)
Browse files Browse the repository at this point in the history
* Test against PHP 8.4
* PHP 8.4: Do not use deprecated constant E_STRICT
  • Loading branch information
W0rma authored Nov 11, 2024
1 parent db8866b commit ce890f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
php: [8.1, 8.2, 8.3]
php: [8.1, 8.2, 8.3, 8.4]
composer_flags: [ '', '--prefer-lowest' ]

steps:
Expand Down
2 changes: 1 addition & 1 deletion tests/unit.suite.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
error_level: "E_ALL | E_STRICT"
error_level: "E_ALL"
class_name: UnitTester

0 comments on commit ce890f0

Please sign in to comment.