@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Roave\BehatPsrContainer; |
5 | 5 |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace RoaveTest\BehatPsrContainer; |
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 RoaveTest\BehatPsrContainer; |
5 | 5 | |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | |
20 | 20 | public function setUp() : void |
21 | 21 | { |
22 | - $this->tempFilename = tempnam(sys_get_temp_dir(), str_replace('\\', '_', __CLASS__) . '_'); |
|
22 | + $this->tempFilename = tempnam(sys_get_temp_dir(), str_replace('\\', '_', __CLASS__).'_'); |
|
23 | 23 | } |
24 | 24 | |
25 | 25 | public function tearDown() : void |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | ); |
38 | 38 | |
39 | 39 | $this->expectException(\RuntimeException::class); |
40 | - $this->expectExceptionMessage('File ' . $this->tempFilename . ' must return a PSR-11 container'); |
|
40 | + $this->expectExceptionMessage('File '.$this->tempFilename.' must return a PSR-11 container'); |
|
41 | 41 | ContainerFactory::createContainerFromIncludedFile($this->tempFilename); |
42 | 42 | } |
43 | 43 |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Roave\BehatPsrContainer; |
5 | 5 |