Completed
Push — master ( 17ecec...f96e7f )
by Doug
51:32 queued 50:04
created
src/VolumePacker.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 
9 9
 use Psr\Log\LoggerAwareInterface;
10 10
 use Psr\Log\LoggerAwareTrait;
11
-use Psr\Log\LoggerInterface;
12 11
 use Psr\Log\NullLogger;
13 12
 
14 13
 /**
Please login to merge, or discard this patch.
src/PackedBoxList.php 1 patch
Unused Use Statements   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,9 @@
 block discarded – undo
7 7
 declare(strict_types=1);
8 8
 namespace DVDoug\BoxPacker;
9 9
 
10
-use ArrayIterator, Countable, IteratorAggregate, Traversable;
10
+use ArrayIterator;
11
+use IteratorAggregate;
12
+use Traversable;
11 13
 use function reset;
12 14
 
13 15
 /**
Please login to merge, or discard this patch.
src/Packer.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,9 +8,9 @@
 block discarded – undo
8 8
 namespace DVDoug\BoxPacker;
9 9
 
10 10
 use function array_unshift;
11
+use Psr\Log\LogLevel;
11 12
 use Psr\Log\LoggerAwareInterface;
12 13
 use Psr\Log\LoggerAwareTrait;
13
-use Psr\Log\LogLevel;
14 14
 use Psr\Log\NullLogger;
15 15
 
16 16
 /**
Please login to merge, or discard this patch.