Skip to content

Commit 7d7dbfe

Browse files
committed
Update dependencies to Symfony 7.0 final
1 parent 69bec43 commit 7d7dbfe

File tree

3 files changed

+12
-17
lines changed

3 files changed

+12
-17
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@
4949
"twig/markdown-extra": "^3.3"
5050
},
5151
"require-dev": {
52-
"dama/doctrine-test-bundle": "^8.0.0-beta5",
53-
"doctrine/doctrine-fixtures-bundle": "4.0.x-dev",
52+
"dama/doctrine-test-bundle": "^8.0.0",
53+
"doctrine/doctrine-fixtures-bundle": "^3.5",
5454
"phpstan/extension-installer": "^1.2",
5555
"phpstan/phpstan": "^1.2",
5656
"phpstan/phpstan-doctrine": "^1.3",

composer.lock

Lines changed: 9 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/Command/AbstractCommandTest.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,11 @@ abstract class AbstractCommandTest extends KernelTestCase
2929
*/
3030
protected function executeCommand(array $arguments, array $inputs = []): CommandTester
3131
{
32-
self::bootKernel();
32+
$kernel = self::bootKernel();
3333

3434
// this uses a special testing container that allows you to fetch private services
3535
/** @var Command $command */
3636
$command = static::getContainer()->get($this->getCommandFqcn());
37-
/** @var KernelInterface $kernel */
38-
$kernel = self::$kernel;
3937
$command->setApplication(new Application($kernel));
4038

4139
$commandTester = new CommandTester($command);

0 commit comments

Comments
 (0)