File tree Expand file tree Collapse file tree 4 files changed +15
-17
lines changed Expand file tree Collapse file tree 4 files changed +15
-17
lines changed Original file line number Diff line number Diff line change @@ -15,17 +15,11 @@ jobs:
1515 strategy :
1616 matrix :
1717 include :
18- - php-version : 7.4
19- symfony-version : 4.4.*
20- sonata-version : ^4.0
21- - php-version : 8.0
22- symfony-version : 5.4.*
23- sonata-version : ^4.0
2418 - php-version : 8.1
25- symfony-version : 6.1 .*
19+ symfony-version : 6.4 .*
2620 sonata-version : ^4.0
27- - php-version : 8.3
28- symfony-version : 7.2 .*
21+ - php-version : 8.4
22+ symfony-version : 7.3 .*
2923 sonata-version : ^4.0
3024
3125 steps :
5448 strategy :
5549 matrix :
5650 include :
57- - php-version : 8.1
58- symfony-version : 6.1 .*
51+ - php-version : 8.4
52+ symfony-version : 7.3 .*
5953
6054 steps :
6155 - name : " Checkout"
8175 strategy :
8276 matrix :
8377 include :
84- - php-version : 8.1
85- symfony-version : 6.1 .*
78+ - php-version : 8.4
79+ symfony-version : 7.3 .*
8680
8781 steps :
8882 - name : " Checkout"
Original file line number Diff line number Diff line change 2525 }
2626 },
2727 "require" : {
28- "php" : " ^7.4|^ 8.0" ,
28+ "php" : " ^8.0" ,
2929 "sonata-project/admin-bundle" : " ^4.0" ,
30- "symfony/workflow" : " ^4.4|^5.0|^ 6.0|^7.0"
30+ "symfony/workflow" : " ^6.0|^7.0"
3131 },
3232 "require-dev" : {
3333 "phpunit/phpunit" : " ^9.5" ,
Original file line number Diff line number Diff line change 1515
1616 <rule ref =" Generic.PHP.ForbiddenFunctions" >
1717 <properties >
18- <property name =" forbiddenFunctions" type =" array" value =" dump=>null,var_dump=>null,die=>null" />
18+ <property name =" forbiddenFunctions" type =" array" >
19+ <element key =" dump" value =" null" />
20+ <element key =" var_dump" value =" null" />
21+ <element key =" die" value =" null" />
22+ </property >
1923 </properties >
2024 </rule >
2125
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ public function getAccessMapping(AdminInterface $admin): array
107107 /**
108108 * @throws InvalidArgumentException
109109 */
110- protected function getWorkflow (object $ subject , string $ workflowName = null ): WorkflowInterface
110+ protected function getWorkflow (object $ subject , string | null $ workflowName = null ): WorkflowInterface
111111 {
112112 return $ this ->registry ->get ($ subject , $ workflowName );
113113 }
You can’t perform that action at this time.
0 commit comments