| @@ -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'; | |
| 16 | + $tempDir = __DIR__.'/../temp'; | |
| 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.neon') | |
| 29 | + ->addConfig(__DIR__.'/config.neon') | |
| 30 | 30 | ->createContainer(); | 
| 31 | 31 | $container->initialize(); | 
| 32 | 32 | |
| @@ -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'; | |