Completed
Push — master ( 15ea05...a6b9a5 )
by James
14s
created
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.
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.
src/Exception/NotAPsrContainer.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\Exception;
5 5
 
Please login to merge, or discard this patch.
test/Exception/NotAPsrContainerTest.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\Exception;
5 5
 
Please login to merge, or discard this patch.
test/ContainerFactoryTest.php 1 patch
Spacing   +2 added lines, -2 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
 
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 
21 21
     public function setUp() : void
22 22
     {
23
-        $this->tempFilename = tempnam(sys_get_temp_dir(), str_replace('\\', '_', __CLASS__) . '_');
23
+        $this->tempFilename = tempnam(sys_get_temp_dir(), str_replace('\\', '_', __CLASS__).'_');
24 24
     }
25 25
 
26 26
     public function tearDown() : void
Please login to merge, or discard this patch.