Completed
Push — master ( 3abe14...4c3005 )
by Pádraic
02:34
created
src/Logger/ConsoleLogger.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
  * This file is part of the humbug/php-scoper package.
5 5
  *
Please login to merge, or discard this patch.
fixtures/set002/original/file.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 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace MyNamespace;
Please login to merge, or discard this patch.
fixtures/set002/scoped/file.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 2
 
3
-declare (strict_types=1);
3
+declare (strict_types = 1);
4 4
 namespace MyPrefix\MyNamespace;
5 5
 
Please login to merge, or discard this patch.
src/Throwable/Exception/RuntimeException.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 Humbug\PhpScoper\Throwable\Exception;
5 5
 
Please login to merge, or discard this patch.
src/Console/Command/AddPrefixCommand.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 Humbug\PhpScoper\Console\Command;
5 5
 
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
         $fileSystem = $this->fileSystem;
97 97
 
98 98
         $paths = array_map(
99
-            function (string $path) use ($cwd, $fileSystem) {
99
+            function(string $path) use ($cwd, $fileSystem) {
100 100
                 if (false === $fileSystem->isAbsolutePath($path)) {
101 101
                     return $cwd.DIRECTORY_SEPARATOR.$path;
102 102
                 }
Please login to merge, or discard this patch.
src/functions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Humbug\PhpScoper;
6 6
 
Please login to merge, or discard this patch.
fixtures/set001/file.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 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace MyNamespace;
Please login to merge, or discard this patch.
src/NodeVisitor/ParentNodeVisitor.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 Humbug\PhpScoper\NodeVisitor;
5 5
 
Please login to merge, or discard this patch.