Passed
Push — master ( 9e9b54...8c04f5 )
by
unknown
38s
created
src/Zicht/Itertools/lib/Interfaces/MapInterface.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,8 +19,7 @@
 block discarded – undo
19 19
     /**
20 20
      * Make an iterator that applies $strategy to every entry in this iterable
21 21
      *
22
-     * @param null|string|\Closure $strategy
23
-     * @param array|string|\Iterator $iterable2
22
+     * @param \Closure $strategy
24 23
      * @return Itertools\lib\MapIterator
25 24
      *
26 25
      * @see Itertools\lib\Traits\MapTrait::map
Please login to merge, or discard this patch.
src/Zicht/Itertools/lib/Interfaces/ReduceInterface.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,6 @@
 block discarded – undo
19 19
     /**
20 20
      * Reduce an iterator to a single value
21 21
      *
22
-     * @param array|string|\Iterator $iterable
23 22
      * @param string|\Closure $closure
24 23
      * @param mixed $initializer
25 24
      * @return mixed
Please login to merge, or discard this patch.
src/Zicht/Itertools/lib/Interfaces/ZipInterface.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,6 @@
 block discarded – undo
19 19
     /**
20 20
      * Returns an iterator where one or more iterables are zipped together
21 21
      *
22
-     * @param array|string|\Iterator $iterable2
23 22
      * @return Itertools\lib\ZipIterator
24 23
      *
25 24
      * @see Itertools\lib\Traits\ZipTrait::zip
Please login to merge, or discard this patch.
src/Zicht/Itertools/lib/Traits/ChainTrait.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -26,8 +26,6 @@
 block discarded – undo
26 26
      * > iter\iterable('ABC', 'DEF')->chain()
27 27
      * A B C D E F
28 28
      *
29
-     * @param array|string|\Iterator $iterable
30
-     * @param array|string|\Iterator $iterable2
31 29
      * @return null|ChainIterator
32 30
      */
33 31
     public function chain(/* $iterable, $iterable2, ... */)
Please login to merge, or discard this patch.
src/Zicht/Itertools/lib/Traits/MapTrait.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,6 @@
 block discarded – undo
35 35
      * 2.5 3.5 4.5
36 36
      *
37 37
      * @param null|string|\Closure $strategy
38
-     * @param array|string|\Iterator $iterable2
39 38
      * @return MapIterator
40 39
      */
41 40
     public function map($strategy /*, $iterable2, ... */)
Please login to merge, or discard this patch.
src/Zicht/Itertools/lib/Traits/ZipTrait.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,6 @@
 block discarded – undo
22 22
      * > zip([1, 2, 3], ['a', 'b', 'c'])
23 23
      * [1, 'a'] [2, 'b'] [3, 'c']
24 24
      *
25
-     * @param array|string|\Iterator $iterable2
26 25
      * @return ZipIterator
27 26
      */
28 27
     public function zip(/* $iterable2, ... */)
Please login to merge, or discard this patch.
src/Zicht/Itertools/lib/Traits/FilterTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     {
23 23
         if ($this instanceof \Iterator) {
24 24
             $strategy = conversions\mixed_to_value_getter($strategy);
25
-            $isValid = function ($value, $key) use ($strategy) {
25
+            $isValid = function($value, $key) use ($strategy) {
26 26
                 $tempVarPhp54 = $strategy($value, $key);
27 27
                 return !empty($tempVarPhp54);
28 28
             };
Please login to merge, or discard this patch.
src/Zicht/Itertools/filters.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
 function type($class, $strategy = null)
29 29
 {
30 30
     $strategy = conversions\mixed_to_value_getter($strategy);
31
-    return function ($value, $key = null) use ($class, $strategy) {
31
+    return function($value, $key = null) use ($class, $strategy) {
32 32
         return $strategy($value, $key) instanceof $class;
33 33
     };
34 34
 }
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
         $haystack = Itertools\iterable($haystack)->values();
59 59
     }
60 60
     $strategy = conversions\mixed_to_value_getter($strategy);
61
-    return function ($value, $key = null) use ($haystack, $strategy, $strict) {
61
+    return function($value, $key = null) use ($haystack, $strategy, $strict) {
62 62
         return in_array($strategy($value, $key), $haystack, $strict);
63 63
     };
64 64
 }
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
         $haystack = Itertools\iterable($haystack)->values();
81 81
     }
82 82
     $strategy = conversions\mixed_to_value_getter($strategy);
83
-    return function ($value, $key = null) use ($haystack, $strategy, $strict) {
83
+    return function($value, $key = null) use ($haystack, $strategy, $strict) {
84 84
         return !in_array($strategy($value, $key), $haystack, $strict);
85 85
     };
86 86
 }
@@ -108,11 +108,11 @@  discard block
 block discarded – undo
108 108
     }
109 109
     $strategy = conversions\mixed_to_value_getter($strategy);
110 110
     if ($strict) {
111
-        return function ($value, $key = null) use ($expected, $strategy) {
111
+        return function($value, $key = null) use ($expected, $strategy) {
112 112
             return $expected === $strategy($value, $key);
113 113
         };
114 114
     } else {
115
-        return function ($value, $key = null) use ($expected, $strategy) {
115
+        return function($value, $key = null) use ($expected, $strategy) {
116 116
             return $expected == $strategy($value, $key);
117 117
         };
118 118
     }
Please login to merge, or discard this patch.