@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types=1); |
|
| 2 | +declare(strict_types = 1); |
|
| 3 | 3 | |
| 4 | 4 | namespace Lookyman\Nette\Proxy\Tests\Console; |
| 5 | 5 | |
@@ -12,14 +12,14 @@ discard block |
||
| 12 | 12 | { |
| 13 | 13 | public function testCommand() |
| 14 | 14 | { |
| 15 | - $tempDir = __DIR__ . '/../temp/Console'; |
|
| 15 | + $tempDir = __DIR__.'/../temp/Console'; |
|
| 16 | 16 | Helpers::initTempDir($tempDir); |
| 17 | - Helpers::initTempDir($tempDir . '/../proxies'); |
|
| 17 | + Helpers::initTempDir($tempDir.'/../proxies'); |
|
| 18 | 18 | |
| 19 | 19 | $container = (new Configurator()) |
| 20 | 20 | ->setTempDirectory($tempDir) |
| 21 | 21 | ->setDebugMode(true) |
| 22 | - ->addConfig(__DIR__ . '/../config/config.neon') |
|
| 22 | + ->addConfig(__DIR__.'/../config/config.neon') |
|
| 23 | 23 | ->createContainer(); |
| 24 | 24 | $container->initialize(); |
| 25 | 25 | |
@@ -33,6 +33,6 @@ discard block |
||
| 33 | 33 | ]); |
| 34 | 34 | |
| 35 | 35 | self::assertNotEquals('', $tester->getDisplay()); |
| 36 | - self::assertCount(2, new \FilesystemIterator($tempDir . '/../proxies', \FilesystemIterator::SKIP_DOTS)); |
|
| 36 | + self::assertCount(2, new \FilesystemIterator($tempDir.'/../proxies', \FilesystemIterator::SKIP_DOTS)); |
|
| 37 | 37 | } |
| 38 | 38 | } |