Completed
Push — master ( 288e8a...71b6d1 )
by James
01:45
created
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.
src/Cart.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
2 2
 
3 3
 namespace jamesdb\Cart;
4 4
 
5
+use League\Event\Emitter;
6
+use Money\Currency;
5 7
 use jamesdb\Cart\CartItem;
6 8
 use jamesdb\Cart\Event as CartEvent;
7 9
 use jamesdb\Cart\Exception as CartException;
8 10
 use jamesdb\Cart\Storage\StorageInterface;
9
-use League\Event\Emitter;
10
-use Money\Currency;
11 11
 
12 12
 class Cart implements CurrencyAwareInterface
13 13
 {
Please login to merge, or discard this patch.