Completed
Pull Request — master (#7)
by James
02:12
created
src/PsrContainerExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Roave\BehatPsrContainer;
5 5
 
Please login to merge, or discard this patch.
test/PsrContainerExtensionTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace RoaveTest\BehatPsrContainer;
5 5
 
Please login to merge, or discard this patch.
test/ContainerFactoryTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/ContainerFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Roave\BehatPsrContainer;
5 5
 
Please login to merge, or discard this patch.