Completed
Branch master (a91446)
by Marc
04:05
created
src/Enum.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace MabeEnum;
4 4
 
5
-use ReflectionClass;
6 5
 use InvalidArgumentException;
7 6
 use LogicException;
7
+use ReflectionClass;
8 8
 
9 9
 /**
10 10
  * Class to implement enumerations for PHP 5 (without SplEnum)
Please login to merge, or discard this patch.
src/EnumSet.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace MabeEnum;
4 4
 
5
-use Iterator;
6 5
 use Countable;
7 6
 use InvalidArgumentException;
7
+use Iterator;
8 8
 
9 9
 /**
10 10
  * This EnumSet is based on a bitset of a binary string.
Please login to merge, or discard this patch.