-
-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for PHP 8.4 #59
Conversation
willReturnOnConsecutiveCalls was missing the call to the sort option, and raising an error due to being called more than 5 times. Signed-off-by: Matthew Weier O'Phinney <[email protected]>
- Adds 8.4 to PHP constraint - Bumps PHPUnit to 10.5 - Fixes a number of PHPUnit deprecations - Resolves an issue in the RoutesFilter when performing a regex against a FQCN. Signed-off-by: Matthew Weier O'Phinney <[email protected]>
- Primarily changing `?:` to `??` when the left side is testing against null - Adds some typehints where expectations are known - Adds `=== null` checks to validate a value is present - Indents a heredoc Signed-off-by: Matthew Weier O'Phinney <[email protected]>
Signed-off-by: Matthew Weier O'Phinney <[email protected]>
Signed-off-by: Matthew Weier O'Phinney <[email protected]>
First version fixing nullable argument handling. Signed-off-by: Matthew Weier O'Phinney <[email protected]>
Ensures deprecations will be resolved. Signed-off-by: Matthew Weier O'Phinney <[email protected]>
Should be true, because we already had this problem in other components. |
- Conflict with older versions of symfony 5 components - Bump vfsStream to latest Signed-off-by: Matthew Weier O'Phinney <[email protected]>
@gsteel All dependency issues resolved — there were some issues with older symfony components as well. |
Should these be merged, and #58 rebased, or would it be better to rebase this after that one is merged? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! 👍
Merged as-is #58 has a way to go, so the rebase can happen there 👍 |
Description
This patch adds support for PHP 8.4.
To accomplish this, it also bumps PHPUnit to 10.5. Doing so uncovered a previously undetected issue with the RoutesFilter, whereby a class name used as filter was not properly escaped, causing the regexp to fail compilation; this has been fixed now.