Completed
Push — master ( 2b3304...e1255d )
by Antonio Carlos
01:47
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\Str\Support;
4 4
 
5
-use Ramsey\Uuid\Uuid;
6
-use Ramsey\Uuid\UuidFactory;
7 5
 use IlluminateAgnostic\Str\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/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\Str\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\Str\Support\Traits\Macroable;
8
+use Countable;
9
+use Exception;
10
+use IlluminateAgnostic\Str\Contracts\Support\Arrayable;
15 11
 use IlluminateAgnostic\Str\Contracts\Support\Jsonable;
12
+use IlluminateAgnostic\Str\Support\Traits\Macroable;
13
+use IteratorAggregate;
14
+use JsonSerializable;
16 15
 use Symfony\Component\VarDumper\VarDumper;
17
-use IlluminateAgnostic\Str\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.
src/Support/helpers.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 use IlluminateAgnostic\Str\Support\Arr;
4
-use IlluminateAgnostic\Str\Support\Str;
5 4
 use IlluminateAgnostic\Str\Support\Collection;
6 5
 use IlluminateAgnostic\Str\Support\Debug\Dumper;
6
+use IlluminateAgnostic\Str\Support\Str;
7 7
 
8 8
 if (!class_exists(Illuminate\Support\Collection::class)) {
9 9
     if (!function_exists('camel_case')) {
Please login to merge, or discard this patch.
src/Support/Traits/Macroable.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace IlluminateAgnostic\Str\Support\Traits;
4 4
 
5
+use BadMethodCallException;
5 6
 use Closure;
6 7
 use ReflectionClass;
7 8
 use ReflectionMethod;
8
-use BadMethodCallException;
9 9
 
10 10
 trait Macroable
11 11
 {
Please login to merge, or discard this patch.