Passed
Branch master (aa6768)
by Simon
02:22
created
Category
src/Set.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
  * This file is part of the Set package.
5 5
  * For the full copyright information please view the LICENCE file that was
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
 
75 75
         // Loop through items in $this, if any do not exist in $set then the
76 76
         // two Sets are not equal.
77
-        foreach($this->data as $item) {
77
+        foreach ($this->data as $item) {
78 78
             if (0 === count(array_search($item, $set->data, true))) {
79 79
                 return false;
80 80
             }
Please login to merge, or discard this patch.
src/Type/SetType.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 Set package.
5 5
  * For the full copyright information please view the LICENCE file that was
Please login to merge, or discard this patch.