Skip to content

Commit 43413f8

Browse files
committed
ping
1 parent 73d781d commit 43413f8

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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

tests/AbstractTestCase.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
/**

tests/HttpKernel/TestKernel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)