@@ -1,10 +1,10 @@ |
||
1 | 1 | <?php |
2 | 2 | namespace Ds\Traits; |
3 | 3 | |
4 | +use Error; |
|
4 | 5 | use OutOfRangeException; |
5 | -use UnderflowException; |
|
6 | 6 | use Traversable; |
7 | -use Error; |
|
7 | +use UnderflowException; |
|
8 | 8 | |
9 | 9 | /** |
10 | 10 | * Sequence |
@@ -209,7 +209,7 @@ |
||
209 | 209 | */ |
210 | 210 | private function identical($a, $b): bool |
211 | 211 | { |
212 | - if (is_object($a) && $a instanceof Hashable){ |
|
212 | + if (is_object($a) && $a instanceof Hashable) { |
|
213 | 213 | return $a->equals($b); |
214 | 214 | } |
215 | 215 |