Completed
Push — master ( 0fe529...747a6a )
by Ítalo
03:26 queued 23s
created
src/Traits/CommonMutableContainerTrait.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 
70 70
     /**
71 71
      * {@inheritDoc}
72
-     * @return $this
72
+     * @return Dictionary
73 73
      */
74 74
     public function groupBy($callback)
75 75
     {
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
 
91 91
     /**
92 92
      * {@inheritDoc}
93
-     * @return $this
93
+     * @return Dictionary
94 94
      */
95 95
     public function indexBy($callback)
96 96
     {
Please login to merge, or discard this patch.
src/MapInterface.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
      * @param $key - The key to set a value.
23 23
      * @param $value - The value to add.
24 24
      *
25
-     * @return  - A shallow copy of the updated current collection itself.
25
+     * @return  Dictionary A shallow copy of the updated current collection itself.
26 26
      */
27 27
     public function add($key, $value);
28 28
 }
Please login to merge, or discard this patch.
src/Traits/StrictIterableTrait.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -238,6 +238,9 @@
 block discarded – undo
238 238
         return $results;
239 239
     }
240 240
 
241
+    /**
242
+     * @param \Collections\ArrayList $array
243
+     */
241 244
     protected function concatRecurse($array, $array1)
242 245
     {
243 246
         $merged = $array;
Please login to merge, or discard this patch.