@@ -1,5 +1,5 @@ discard block |
||
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 |
||
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 | } |
@@ -1,5 +1,5 @@ |
||
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 |