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 22
33[ ![ 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 )
44
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 )
66
77## Install
88
Original file line number Diff line number Diff line change @@ -13,10 +13,10 @@ abstract class AbstractTestCase extends TestCase
1313
1414 protected function setUp (): void
1515 {
16- $ kernel = new TestKernel ('test ' , true );
17- $ kernel ->boot ();
16+ $ testKernel = new TestKernel ('test ' , true );
17+ $ testKernel ->boot ();
1818
19- $ this ->container = $ kernel ->getContainer ();
19+ $ this ->container = $ testKernel ->getContainer ();
2020 }
2121
2222 /**
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ public function registerBundles(): iterable
1717 return [];
1818 }
1919
20- public function registerContainerConfiguration (LoaderInterface $ loader )
20+ public function registerContainerConfiguration (LoaderInterface $ loader ): void
2121 {
2222 $ loader ->load (__DIR__ . '/../../config/config.php ' );
2323 }
You can’t perform that action at this time.
0 commit comments