Completed
Push — master ( a7bdd4...c7897e )
by Antonio Carlos
03:18
created
src/Support/Str.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace IlluminateAgnostic\Collection\Support;
4 4
 
5
-use Ramsey\Uuid\Uuid;
6
-use Ramsey\Uuid\UuidFactory;
7 5
 use IlluminateAgnostic\Collection\Support\Traits\Macroable;
8
-use Ramsey\Uuid\Generator\CombGenerator;
9 6
 use Ramsey\Uuid\Codec\TimestampFirstCombCodec;
7
+use Ramsey\Uuid\Generator\CombGenerator;
8
+use Ramsey\Uuid\Uuid;
9
+use Ramsey\Uuid\UuidFactory;
10 10
 
11 11
 class Str
12 12
 {
Please login to merge, or discard this patch.
src/Support/Arr.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,8 +3,8 @@
 block discarded – undo
3 3
 namespace IlluminateAgnostic\Collection\Support;
4 4
 
5 5
 use ArrayAccess;
6
-use InvalidArgumentException;
7 6
 use IlluminateAgnostic\Collection\Support\Traits\Macroable;
7
+use InvalidArgumentException;
8 8
 
9 9
 class Arr
10 10
 {
Please login to merge, or discard this patch.
src/Support/Collection.php 1 patch
Unused Use Statements   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -2,19 +2,19 @@
 block discarded – undo
2 2
 
3 3
 namespace IlluminateAgnostic\Collection\Support;
4 4
 
5
-use stdClass;
6
-use Countable;
7
-use Exception;
8 5
 use ArrayAccess;
9
-use Traversable;
10 6
 use ArrayIterator;
11 7
 use CachingIterator;
12
-use JsonSerializable;
13
-use IteratorAggregate;
14
-use IlluminateAgnostic\Collection\Support\Traits\Macroable;
8
+use Countable;
9
+use Exception;
10
+use IlluminateAgnostic\Collection\Contracts\Support\Arrayable;
15 11
 use IlluminateAgnostic\Collection\Contracts\Support\Jsonable;
12
+use IlluminateAgnostic\Collection\Support\Traits\Macroable;
13
+use IteratorAggregate;
14
+use JsonSerializable;
16 15
 use Symfony\Component\VarDumper\VarDumper;
17
-use IlluminateAgnostic\Collection\Contracts\Support\Arrayable;
16
+use Traversable;
17
+use stdClass;
18 18
 
19 19
 /**
20 20
  * @property-read HigherOrderCollectionProxy $average
Please login to merge, or discard this patch.