Skip to content

Commit 2f62ccf

Browse files
authored
Merge pull request #52 from jakzal/symfony-framework-7
Allow symfony/framework-bundle 7
2 parents 6999a2e + 376ea6e commit 2f62ccf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"symfony/dependency-injection": "^4.4.12 || ^5.3 || ^6.0 || ^7.0",
1414
"symfony/http-kernel": "^4.4.12 || ^5.3 || ^6.0 || ^7.0",
1515
"zalas/phpunit-globals": "^2.0 || ^3.0",
16-
"symfony/framework-bundle": "^4.4.12 || ^5.3 || ^6.0",
16+
"symfony/framework-bundle": "^4.4.12 || ^5.3 || ^6.0 || ^7.0",
1717
"zalas/phpunit-doubles": "^1.9.2",
1818
"phpspec/prophecy": "^1.9",
1919
"phpspec/prophecy-phpunit": "^2.0"

tests/Symfony/TestCase/Fixtures/NoFrameworkBundle/AnotherTestKernel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function registerContainerConfiguration(LoaderInterface $loader)
3535
});
3636
}
3737

38-
protected function build(ContainerBuilder $container)
38+
protected function build(ContainerBuilder $container): void
3939
{
4040
if ('test' === $this->getEnvironment()) {
4141
$container->addCompilerPass(

tests/Symfony/TestCase/Fixtures/NoFrameworkBundle/TestKernel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function registerContainerConfiguration(LoaderInterface $loader)
4242
});
4343
}
4444

45-
protected function build(ContainerBuilder $container)
45+
protected function build(ContainerBuilder $container): void
4646
{
4747
if ('test' === $this->getEnvironment()) {
4848
$container->addCompilerPass(

0 commit comments

Comments
 (0)