Completed
Branch refactor-set (923557)
by Baptiste
02:09
created
src/AbstractSnapshot.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -13,10 +13,8 @@
 block discarded – undo
13 13
 
14 14
 use ArrayAccess;
15 15
 use ReflectionClass;
16
-
17 16
 use BadMethodCallException;
18 17
 use InvalidArgumentException;
19
-
20 18
 use Totem\Exception\IncomparableDataException;
21 19
 
22 20
 /**
Please login to merge, or discard this patch.
src/Set.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -13,18 +13,14 @@
 block discarded – undo
13 13
 
14 14
 use Countable;
15 15
 use ArrayAccess;
16
-
17 16
 use ArrayIterator;
18 17
 use IteratorAggregate;
19
-
20 18
 use RuntimeException;
21 19
 use OutOfBoundsException;
22 20
 use BadMethodCallException;
23
-
24 21
 use Totem\Change\Removal;
25 22
 use Totem\Change\Addition;
26 23
 use Totem\Change\Modification;
27
-
28 24
 use Totem\SetInterface;
29 25
 use Totem\AbstractSnapshot;
30 26
 use Totem\Snapshot\CollectionSnapshot;
Please login to merge, or discard this patch.
src/Snapshot/CollectionSnapshot.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -14,10 +14,8 @@
 block discarded – undo
14 14
 use Traversable;
15 15
 use ReflectionClass;
16 16
 use InvalidArgumentException;
17
-
18 17
 use Symfony\Component\PropertyAccess\PropertyPath;
19 18
 use Symfony\Component\PropertyAccess\PropertyAccess;
20
-
21 19
 use Totem\AbstractSnapshot;
22 20
 
23 21
 /**
Please login to merge, or discard this patch.
src/Snapshot/ObjectSnapshot.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
 
14 14
 use ReflectionObject;
15 15
 use InvalidArgumentException;
16
-
17 16
 use Totem\AbstractSnapshot;
18 17
 
19 18
 /**
Please login to merge, or discard this patch.
test/AbstractSnapshotTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
 
14 14
 use ReflectionMethod;
15 15
 use ReflectionProperty;
16
-
17 16
 use PHPUnit_Framework_TestCase;
18 17
 
19 18
 class AbstractSnapshotTest extends PHPUnit_Framework_TestCase
Please login to merge, or discard this patch.
test/SetTest.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -12,9 +12,7 @@
 block discarded – undo
12 12
 namespace Totem;
13 13
 
14 14
 use stdClass;
15
-
16 15
 use PHPUnit_Framework_TestCase;
17
-
18 16
 use Totem\Snapshot\ArraySnapshot;
19 17
 use Totem\Snapshot\ObjectSnapshot;
20 18
 use Totem\Snapshot\CollectionSnapshot;
Please login to merge, or discard this patch.
test/Snapshot/ObjectSnapshotTest.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -12,8 +12,6 @@
 block discarded – undo
12 12
 namespace Totem\Snapshot;
13 13
 
14 14
 use stdClass;
15
-use ReflectionMethod;
16
-
17 15
 use PHPUnit_Framework_TestCase;
18 16
 
19 17
 class ObjectSnapshotTest extends PHPUnit_Framework_TestCase
Please login to merge, or discard this patch.