Completed
Push — master ( 52755b...6c4366 )
by smiley
02:13
created
vendor/sebastian/global-state/tests/_fixture/SnapshotDomDocument.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
  * file that was distributed with this source code.
9 9
  */
10 10
 
11
-declare(strict_types=1);
11
+declare(strict_types = 1);
12 12
 
13 13
 namespace SebastianBergmann\GlobalState\TestFixture;
14 14
 
Please login to merge, or discard this patch.
vendor/sebastian/global-state/tests/_fixture/BlacklistedClass.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
  * file that was distributed with this source code.
9 9
  */
10 10
 
11
-declare(strict_types=1);
11
+declare(strict_types = 1);
12 12
 
13 13
 namespace SebastianBergmann\GlobalState\TestFixture;
14 14
 
Please login to merge, or discard this patch.
vendor/sebastian/global-state/tests/_fixture/BlacklistedImplementor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
  * file that was distributed with this source code.
9 9
  */
10 10
 
11
-declare(strict_types=1);
11
+declare(strict_types = 1);
12 12
 
13 13
 namespace SebastianBergmann\GlobalState\TestFixture;
14 14
 
Please login to merge, or discard this patch.
vendor/sebastian/global-state/tests/_fixture/SnapshotClass.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
  * file that was distributed with this source code.
9 9
  */
10 10
 
11
-declare(strict_types=1);
11
+declare(strict_types = 1);
12 12
 
13 13
 namespace SebastianBergmann\GlobalState\TestFixture;
14 14
 
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
     public static function init()
29 29
     {
30 30
         self::$dom                 = new DomDocument();
31
-        self::$closure             = function () {};
31
+        self::$closure             = function() {};
32 32
         self::$arrayObject         = new ArrayObject([1, 2, 3]);
33 33
         self::$snapshotDomDocument = new SnapshotDomDocument();
34 34
         self::$resource            = \fopen('php://memory', 'r');
Please login to merge, or discard this patch.
vendor/sebastian/global-state/tests/_fixture/BlacklistedChildClass.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
  * file that was distributed with this source code.
9 9
  */
10 10
 
11
-declare(strict_types=1);
11
+declare(strict_types = 1);
12 12
 
13 13
 namespace SebastianBergmann\GlobalState\TestFixture;
14 14
 
Please login to merge, or discard this patch.
vendor/sebastian/global-state/tests/_fixture/BlacklistedInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
  * file that was distributed with this source code.
9 9
  */
10 10
 
11
-declare(strict_types=1);
11
+declare(strict_types = 1);
12 12
 
13 13
 namespace SebastianBergmann\GlobalState\TestFixture;
14 14
 
Please login to merge, or discard this patch.
vendor/sebastian/global-state/tests/_fixture/SnapshotTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
  * file that was distributed with this source code.
9 9
  */
10 10
 
11
-declare(strict_types=1);
11
+declare(strict_types = 1);
12 12
 
13 13
 namespace SebastianBergmann\GlobalState\TestFixture;
14 14
 
Please login to merge, or discard this patch.
vendor/sebastian/global-state/tests/_fixture/SnapshotFunctions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
  * file that was distributed with this source code.
9 9
  */
10 10
 
11
-declare(strict_types=1);
11
+declare(strict_types = 1);
12 12
 
13 13
 namespace SebastianBergmann\GlobalState\TestFixture;
14 14
 
Please login to merge, or discard this patch.
vendor/sebastian/global-state/tests/SnapshotTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
  * file that was distributed with this source code.
9 9
  */
10 10
 
11
-declare(strict_types=1);
11
+declare(strict_types = 1);
12 12
 
13 13
 namespace SebastianBergmann\GlobalState;
14 14
 
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
     public function testStaticAttributes()
37 37
     {
38 38
         $this->blacklist->method('isStaticAttributeBlacklisted')->willReturnCallback(
39
-            function ($class) {
39
+            function($class) {
40 40
                 return $class !== SnapshotClass::class;
41 41
             }
42 42
         );
Please login to merge, or discard this patch.