Completed
Push — master ( 8e74c6...24fea9 )
by Amine
02:31
created
src/operators.php 1 patch
Doc Comments   -23 removed lines patch added patch discarded remove patch
@@ -16,8 +16,6 @@  discard block
 block discarded – undo
16 16
  *
17 17
  * @stream
18 18
  * @signature Boolean -> Boolean -> Boolean
19
- * @param  bool $a
20
- * @param  bool $b
21 19
  * @return bool
22 20
  */
23 21
 function and_() {
@@ -39,8 +37,6 @@  discard block
 block discarded – undo
39 37
  *
40 38
  * @stream
41 39
  * @signature Boolean -> Boolean -> Boolean
42
- * @param  bool $a
43
- * @param  bool $b
44 40
  * @return bool
45 41
  */
46 42
 function or_() {
@@ -60,7 +56,6 @@  discard block
 block discarded – undo
60 56
  *
61 57
  * @stream
62 58
  * @signature Boolean -> Boolean
63
- * @param  bool $x
64 59
  * @return bool
65 60
  */
66 61
 function not() {
@@ -80,8 +75,6 @@  discard block
 block discarded – undo
80 75
  *
81 76
  * @stream
82 77
  * @signature * -> * -> Boolean
83
- * @param  mixed $a
84
- * @param  mixed $b
85 78
  * @return bool
86 79
  */
87 80
 function eq() {
@@ -100,8 +93,6 @@  discard block
 block discarded – undo
100 93
  *
101 94
  * @stream
102 95
  * @signature * -> * -> Boolean
103
- * @param  mixed $a
104
- * @param  mixed $b
105 96
  * @return bool
106 97
  */
107 98
 function notEq() {
@@ -120,8 +111,6 @@  discard block
 block discarded – undo
120 111
  * ```
121 112
  * @stream
122 113
  * @signature * -> * -> Boolean
123
- * @param  mixed $a
124
- * @param  mixed $b
125 114
  * @return bool
126 115
  */
127 116
 function eqq() {
@@ -141,8 +130,6 @@  discard block
 block discarded – undo
141 130
  *
142 131
  * @stream
143 132
  * @signature * -> * -> Boolean
144
- * @param  mixed $a
145
- * @param  mixed $b
146 133
  * @return bool
147 134
  */
148 135
 function notEqq() {
@@ -173,8 +160,6 @@  discard block
 block discarded – undo
173 160
  *
174 161
  * @stream
175 162
  * @signature * -> * -> Boolean
176
- * @param  mixed $a
177
- * @param  mixed $b
178 163
  * @return bool
179 164
  */
180 165
 function equals() {
@@ -258,8 +243,6 @@  discard block
 block discarded – undo
258 243
  *
259 244
  * @stream
260 245
  * @signature * -> * -> Boolean
261
- * @param  mixed $a
262
- * @param  mixed $b
263 246
  * @return bool
264 247
  */
265 248
 function lt() {
@@ -280,8 +263,6 @@  discard block
 block discarded – undo
280 263
  *
281 264
  * @stream
282 265
  * @signature * -> * -> Boolean
283
- * @param  mixed $a
284
- * @param  mixed $b
285 266
  * @return bool
286 267
  */
287 268
 function lte() {
@@ -302,8 +283,6 @@  discard block
 block discarded – undo
302 283
  *
303 284
  * @stream
304 285
  * @signature * -> * -> Boolean
305
- * @param  mixed $a
306
- * @param  mixed $b
307 286
  * @return bool
308 287
  */
309 288
 function gt() {
@@ -324,8 +303,6 @@  discard block
 block discarded – undo
324 303
  *
325 304
  * @stream
326 305
  * @signature * -> * -> Boolean
327
- * @param  mixed $a
328
- * @param  mixed $b
329 306
  * @return bool
330 307
  */
331 308
 function gte() {
Please login to merge, or discard this patch.
src/Classes/Stream.php 1 patch
Doc Comments   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
      * Creates a new Stream.
37 37
      *
38 38
      * @param  mixed $data
39
-     * @return Tarsana\Functional\Stream
39
+     * @return Stream
40 40
      */
41 41
     public static function of($data)
42 42
     {
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
      * Adds a new operation to the Stream class.
48 48
      *
49 49
      * @param  string $name
50
-     * @param  string $signature
50
+     * @param  string $signatures
51 51
      * @param  callable $fn
52 52
      * @return void
53 53
      */
@@ -89,7 +89,6 @@  discard block
 block discarded – undo
89 89
     /**
90 90
      * Creates a new Stream with some data.
91 91
      *
92
-     * @param mixed $data
93 92
      */
94 93
     protected function __construct($stream)
95 94
     {
@@ -122,7 +121,7 @@  discard block
 block discarded – undo
122 121
      *
123 122
      * @param  string $name The name of the operation
124 123
      * @param  array  $args
125
-     * @return Tarsana\Functional\Stream
124
+     * @return Stream
126 125
      */
127 126
     public function __call($name, $args)
128 127
     {
Please login to merge, or discard this patch.