@@ -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 @@ 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 | |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | { |
12 | 12 | public function testCommand() |
13 | 13 | { |
14 | - $tempDir = __DIR__ . '/../temp/Console'; |
|
14 | + $tempDir = __DIR__.'/../temp/Console'; |
|
15 | 15 | if (!@mkdir($tempDir, 0777, true) && !is_dir($tempDir)) { |
16 | 16 | throw new \RuntimeException(sprintf('Cannot create temp directory %s', $tempDir)); |
17 | 17 | } |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | $container = (new Configurator()) |
25 | 25 | ->setTempDirectory($tempDir) |
26 | 26 | ->setDebugMode(true) |
27 | - ->addConfig(__DIR__ . '/../config/config.neon') |
|
27 | + ->addConfig(__DIR__.'/../config/config.neon') |
|
28 | 28 | ->createContainer(); |
29 | 29 | $container->initialize(); |
30 | 30 | |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | $tester = new CommandTester($application->find('lookyman:nette-proxy:generate')); |
34 | 34 | $tester->execute(['command' => 'lookyman:nette-proxy:generate']); |
35 | 35 | |
36 | - self::assertFileExists(__DIR__ . '/../temp/proxies/ProxyManagerGeneratedProxy__PM__LookymanNetteProxyTestsMockIService2FactoryGeneratedee1449ea0da0fdbf038d28254e9c7b3f.php'); |
|
37 | - self::assertFileExists(__DIR__ . '/../temp/proxies/ProxyManagerGeneratedProxy__PM__LookymanNetteProxyTestsMockService1Generateda427b08305d9796d18525e91e7b08e56.php'); |
|
36 | + self::assertFileExists(__DIR__.'/../temp/proxies/ProxyManagerGeneratedProxy__PM__LookymanNetteProxyTestsMockIService2FactoryGeneratedee1449ea0da0fdbf038d28254e9c7b3f.php'); |
|
37 | + self::assertFileExists(__DIR__.'/../temp/proxies/ProxyManagerGeneratedProxy__PM__LookymanNetteProxyTestsMockService1Generateda427b08305d9796d18525e91e7b08e56.php'); |
|
38 | 38 | } |
39 | 39 | } |
@@ -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 |