@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Lookyman\Nette\Proxy\DI; |
5 | 5 |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Lookyman\Nette\Proxy\DI; |
5 | 5 |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Lookyman\Nette\Proxy\DI; |
5 | 5 |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Lookyman\Nette\Proxy\DI; |
5 | 5 |
@@ -1,4 +1,4 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | -require_once __DIR__ . '/../vendor/autoload.php'; |
|
4 | +require_once __DIR__.'/../vendor/autoload.php'; |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Lookyman\Nette\Proxy\DI; |
5 | 5 |
@@ -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; |
5 | 5 | |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | { |
14 | 14 | public function testExtension() |
15 | 15 | { |
16 | - $tempDir = __DIR__ . '/../temp/DI'; |
|
16 | + $tempDir = __DIR__.'/../temp/DI'; |
|
17 | 17 | if (!@mkdir($tempDir, 0777, true) && !is_dir($tempDir)) { |
18 | 18 | throw new \RuntimeException(sprintf('Cannot create temp directory %s', $tempDir)); |
19 | 19 | } |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | $container = (new Configurator()) |
27 | 27 | ->setTempDirectory($tempDir) |
28 | 28 | ->setDebugMode(true) |
29 | - ->addConfig(__DIR__ . '/../config/config.neon') |
|
29 | + ->addConfig(__DIR__.'/../config/config.neon') |
|
30 | 30 | ->createContainer(); |
31 | 31 | $container->initialize(); |
32 | 32 |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Lookyman\Nette\Proxy\DI; |
5 | 5 |
@@ -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 | } |