Completed
Push — refactor_EnumMap ( 436164...6227f0 )
by Marc
02:20 queued 55s
created
src/EnumSerializableTrait.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace MabeEnum;
4 4
 
5
-use RuntimeException;
6 5
 use LogicException;
6
+use RuntimeException;
7 7
 
8 8
 /**
9 9
  * Trait to make enumerations serializable
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
@@ -3,8 +3,8 @@
 block discarded – undo
3 3
 namespace MabeEnum;
4 4
 
5 5
 use Countable;
6
-use Iterator;
7 6
 use InvalidArgumentException;
7
+use Iterator;
8 8
 
9 9
 /**
10 10
  * A set of enumerators of the given enumeration (EnumSet<T>)
Please login to merge, or discard this patch.
src/EnumMap.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -161,7 +161,6 @@
 block discarded – undo
161 161
     /**
162 162
      * Attach a new enumerator or overwrite an existing one
163 163
      * @param Enum|null|boolean|int|float|string $enumerator
164
-     * @param mixed                              $data
165 164
      * @return void
166 165
      * @throws InvalidArgumentException On an invalid given enumerator
167 166
      * @see attach()
Please login to merge, or discard this patch.