Skip to content

Commit

Permalink
Fix issue when group prefix is not applied to routes. (#1219)
Browse files Browse the repository at this point in the history
  • Loading branch information
spiralbot committed Mar 3, 2025
1 parent b1c3772 commit 3a4aa72
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"require": {
"php": ">=8.1",
"psr/container": "^1.1|^2.0",
"spiral/security": "^3.15.4"
"spiral/security": "^3.16"
},
"require-dev": {
"mockery/mockery": "^1.6.12",
Expand All @@ -57,7 +57,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "3.15.x-dev"
"dev-master": "3.16.x-dev"
}
},
"config": {
Expand Down
3 changes: 1 addition & 2 deletions tests/Exception/ClosureRendererTraitTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,9 @@ public function testDefaultScalarValues(): void
}

/**
* @requires PHP >= 8.2
*
* @link https://wiki.php.net/rfc/null-false-standalone-types
*/
#[\PHPUnit\Framework\Attributes\RequiresPhp('>= 8.2')]
public function testNullAndFalseTypes(): void
{
eval('$fn = fn (null $a, false $b) => null;');
Expand Down

0 comments on commit 3a4aa72

Please sign in to comment.