Completed
Push — master ( d0a740...24e054 )
by Harry
02:22
created
src/Collection/ImmutableCollection.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
     }
31 31
 
32 32
     /**
33
-     * @param mixed $value
33
+     * @param string $value
34 34
      *
35 35
      * @return ImmutableCollection
36 36
      */
Please login to merge, or discard this patch.
src/Container/ContainerInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -31,6 +31,7 @@
 block discarded – undo
31 31
 
32 32
     /**
33 33
      * @param callable $fn
34
+     * @return void
34 35
      */
35 36
     public function forAll(callable $fn);
36 37
 
Please login to merge, or discard this patch.
src/Container/ImmutableContainer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
 
30 30
     /**
31 31
      * @param string $key
32
-     * @param mixed  $value
32
+     * @param string  $value
33 33
      *
34 34
      * @return ContainerInterface
35 35
      */
Please login to merge, or discard this patch.
src/Container/FlatContainer.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 namespace Graze\DataStructure\Container;
15 15
 
16 16
 use ArrayAccess;
17
-use RecursiveArrayIterator;
18 17
 
19 18
 /**
20 19
  * FlatContainer accepts key access using a delimiter to represent child arrays
Please login to merge, or discard this patch.