@@ -1,7 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | namespace Ds\Traits; |
3 | 3 | |
4 | -use Ds\Collection; |
|
5 | 4 | use Ds\Sequence; |
6 | 5 | use OutOfRangeException; |
7 | 6 | use UnderflowException; |
@@ -149,7 +149,7 @@ |
||
149 | 149 | throw new UnderflowException(); |
150 | 150 | } |
151 | 151 | |
152 | - return $this->array[ count($this) - 1]; |
|
152 | + return $this->array[count($this) - 1]; |
|
153 | 153 | } |
154 | 154 | |
155 | 155 | /** |