File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
[ ![ Downloads total] ( https://img.shields.io/packagist/dt/symplify/php-config-printer.svg?style=flat-square )] ( https://packagist.org/packages/symplify/php-config-printer/stats )
4
4
5
- Print Symfony services array with configuration to to plain PHP file format thanks to this simple php-parser wrapper
5
+ Print Symfony services array with configuration to to plain PHP file format using [ nikic/ php-parser] ( https://github.com/nikic/PHP-Parser )
6
6
7
7
## Install
8
8
Original file line number Diff line number Diff line change @@ -13,10 +13,10 @@ abstract class AbstractTestCase extends TestCase
13
13
14
14
protected function setUp (): void
15
15
{
16
- $ kernel = new TestKernel ('test ' , true );
17
- $ kernel ->boot ();
16
+ $ testKernel = new TestKernel ('test ' , true );
17
+ $ testKernel ->boot ();
18
18
19
- $ this ->container = $ kernel ->getContainer ();
19
+ $ this ->container = $ testKernel ->getContainer ();
20
20
}
21
21
22
22
/**
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ public function registerBundles(): iterable
17
17
return [];
18
18
}
19
19
20
- public function registerContainerConfiguration (LoaderInterface $ loader )
20
+ public function registerContainerConfiguration (LoaderInterface $ loader ): void
21
21
{
22
22
$ loader ->load (__DIR__ . '/../../config/config.php ' );
23
23
}
You can’t perform that action at this time.
0 commit comments