Completed
Push — master ( 37d7f4...12b79b )
by James
15:55 queued 14:01
created
src/Cart.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,14 +2,14 @@
 block discarded – undo
2 2
 
3 3
 namespace jamesdb\Cart;
4 4
 
5
+use League\Event\Emitter;
6
+use SebastianBergmann\Money\Currency;
7
+use SebastianBergmann\Money\Money;
5 8
 use jamesdb\Cart\CartItem;
6 9
 use jamesdb\Cart\Event as CartEvent;
7 10
 use jamesdb\Cart\Exception as CartException;
8 11
 use jamesdb\Cart\Identifier\IdentifierInterface;
9 12
 use jamesdb\Cart\Storage\StorageInterface;
10
-use League\Event\Emitter;
11
-use SebastianBergmann\Money\Currency;
12
-use SebastianBergmann\Money\Money;
13 13
 
14 14
 class Cart
15 15
 {
Please login to merge, or discard this patch.
src/CartItem.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,9 +3,9 @@
 block discarded – undo
3 3
 namespace jamesdb\Cart;
4 4
 
5 5
 use ArrayAccess;
6
-use jamesdb\Cart\Exception\CartPropertyNotIntegerException;
7 6
 use SebastianBergmann\Money\Currency;
8 7
 use SebastianBergmann\Money\Money;
8
+use jamesdb\Cart\Exception\CartPropertyNotIntegerException;
9 9
 
10 10
 class CartItem implements ArrayAccess
11 11
 {
Please login to merge, or discard this patch.