File tree Expand file tree Collapse file tree 4 files changed +11
-8
lines changed
tests/Fixtures/ConfigurationBundle/DependencyInjection/Compiler Expand file tree Collapse file tree 4 files changed +11
-8
lines changed Original file line number Diff line number Diff line change 2626 - ' 6.3.*'
2727 - ' 6.4.*'
2828 - ' 7.0.*'
29+ include :
30+ - php : ' 8.4'
31+ symfony : ' 8.0.*'
2932 exclude :
3033 - php : ' 7.2'
3134 symfony : ' 6.0.*'
Original file line number Diff line number Diff line change 1414 ],
1515 "require" : {
1616 "php" : " ^7.2.5 || ^8.0" ,
17- "symfony/dependency-injection" : " ^5.4 || ^6.0 || ^7.0" ,
18- "symfony/filesystem" : " ^5.4 || ^6.0 || ^7.0" ,
19- "symfony/framework-bundle" : " ^5.4 || ^6.0 || ^7.0" ,
20- "symfony/http-kernel" : " ^5.4 || ^6.0 || ^7.0" ,
21- "symfony/yaml" : " ^5.4 || ^6.0 || ^7.0"
17+ "symfony/dependency-injection" : " ^5.4 || ^6.0 || ^7.0 || ^8.0 " ,
18+ "symfony/filesystem" : " ^5.4 || ^6.0 || ^7.0 || ^8.0 " ,
19+ "symfony/framework-bundle" : " ^5.4 || ^6.0 || ^7.0 || ^8.0 " ,
20+ "symfony/http-kernel" : " ^5.4 || ^6.0 || ^7.0 || ^8.0 " ,
21+ "symfony/yaml" : " ^5.4 || ^6.0 || ^7.0 || ^8.0 "
2222 },
2323 "require-dev" : {
2424 "phpunit/phpunit" : " ^8.5 || ^9.4"
4040 },
4141 "extra" : {
4242 "branch-alias" : {
43- "dev-master" : " 2.0 -dev"
43+ "dev-master" : " 3.x -dev"
4444 }
4545 },
4646 "scripts" : {
Original file line number Diff line number Diff line change 77
88class DeRegisterSomethingPass implements CompilerPassInterface
99{
10- public function process (ContainerBuilder $ container )
10+ public function process (ContainerBuilder $ container ): void
1111 {
1212 if ($ container ->hasDefinition ('something ' )) {
1313 $ container ->removeDefinition ('something ' );
Original file line number Diff line number Diff line change 88
99class RegisterSomethingPass implements CompilerPassInterface
1010{
11- public function process (ContainerBuilder $ container )
11+ public function process (ContainerBuilder $ container ): void
1212 {
1313 if ($ container ->hasDefinition ('something ' )) {
1414 return ;
You can’t perform that action at this time.
0 commit comments