Completed
Push — master ( 5a66ad...309b32 )
by Amine
01:58
created
src/common.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -24,7 +24,6 @@  discard block
 block discarded – undo
24 24
  * ```
25 25
  *
26 26
  * @signature * -> String
27
- * @param  mixed $data
28 27
  * @return string
29 28
  */
30 29
 function type() {
@@ -79,7 +78,6 @@  discard block
 block discarded – undo
79 78
  * ```
80 79
  *
81 80
  * @signature * -> String
82
- * @param  mixed $something
83 81
  * @return string
84 82
  */
85 83
 function toString () {
Please login to merge, or discard this patch.
src/math.php 1 patch
Doc Comments   -13 removed lines patch added patch discarded remove patch
@@ -11,8 +11,6 @@  discard block
 block discarded – undo
11 11
  * ```
12 12
  *
13 13
  * @signature Number -> Number -> Number
14
- * @param  int|float $x
15
- * @param  int|float $y
16 14
  * @return int|float
17 15
  */
18 16
 function plus() {
@@ -29,8 +27,6 @@  discard block
 block discarded – undo
29 27
  * ```
30 28
  *
31 29
  * @signature Number -> Number -> Number
32
- * @param  int|float $x
33
- * @param  int|float $y
34 30
  * @return int|float
35 31
  */
36 32
 function minus() {
@@ -48,7 +44,6 @@  discard block
 block discarded – undo
48 44
  * ```
49 45
  *
50 46
  * @signature Number -> Number
51
- * @param  int|float $x
52 47
  * @return int|float
53 48
  */
54 49
 function negate() {
@@ -65,8 +60,6 @@  discard block
 block discarded – undo
65 60
  * ```
66 61
  *
67 62
  * @signature Number -> Number -> Number
68
- * @param  int|float $x
69
- * @param  int|float $y
70 63
  * @return int|float
71 64
  */
72 65
 function multiply() {
@@ -83,8 +76,6 @@  discard block
 block discarded – undo
83 76
  * ```
84 77
  *
85 78
  * @signature Number -> Number -> Number
86
- * @param  int|float $x
87
- * @param  int|float $y
88 79
  * @return int|float
89 80
  */
90 81
 function divide() {
@@ -101,8 +92,6 @@  discard block
 block discarded – undo
101 92
  * ```
102 93
  *
103 94
  * @signature Number -> Number -> Number
104
- * @param  int|float $x
105
- * @param  int|float $y
106 95
  * @return int|float
107 96
  */
108 97
 function modulo() {
@@ -120,7 +109,6 @@  discard block
 block discarded – undo
120 109
  * ```
121 110
  *
122 111
  * @signature [Number] -> Number
123
- * @param  array $numbers
124 112
  * @return int|float
125 113
  */
126 114
 function sum() {
@@ -137,7 +125,6 @@  discard block
 block discarded – undo
137 125
  * ```
138 126
  *
139 127
  * @signature [Number] -> Number
140
- * @param  array $numbers
141 128
  * @return int|float
142 129
  */
143 130
 function product() {
Please login to merge, or discard this patch.
src/object.php 1 patch
Doc Comments   -18 removed lines patch added patch discarded remove patch
@@ -19,7 +19,6 @@  discard block
 block discarded – undo
19 19
  * ```
20 20
  *
21 21
  * @signature a -> a
22
- * @param  mixed $value
23 22
  * @return mixed
24 23
  */
25 24
 function clone_() {
@@ -67,7 +66,6 @@  discard block
 block discarded – undo
67 66
  * ```
68 67
  *
69 68
  * @signature {k: v} -> {k: v}
70
- * @param  object $object
71 69
  * @return array
72 70
  */
73 71
 function attributes() {
@@ -143,8 +141,6 @@  discard block
 block discarded – undo
143 141
  * ```
144 142
  *
145 143
  * @signature k -> {k: v} -> Boolean
146
- * @param  string|int $name
147
- * @param  mixed $object
148 144
  * @return bool
149 145
  */
150 146
 function has() {
@@ -173,8 +169,6 @@  discard block
 block discarded – undo
173 169
  * ```
174 170
  *
175 171
  * @signature k -> {k: v} -> Maybe(v)
176
- * @param  string $name
177
- * @param  array $object
178 172
  * @return mixed
179 173
  */
180 174
 function get() {
@@ -201,8 +195,6 @@  discard block
 block discarded – undo
201 195
  * ```
202 196
  *
203 197
  * @signature [k] -> {k: v} -> v
204
- * @param  array $path
205
- * @param  mixed $object
206 198
  * @return mixed
207 199
  */
208 200
 function getPath() {
@@ -229,9 +221,6 @@  discard block
 block discarded – undo
229 221
  * ```
230 222
  *
231 223
  * @signature k -> v -> {k: v} -> {k: v}
232
- * @param  string|int $name
233
- * @param  mixed $value
234
- * @param  mixed $object
235 224
  * @return mixed
236 225
  */
237 226
 function set() {
@@ -258,9 +247,6 @@  discard block
 block discarded – undo
258 247
  * ```
259 248
  *
260 249
  * @signature (a -> Boolean) -> k -> {k : a} -> Boolean
261
- * @param  callable $predicate
262
- * @param  string|int $key
263
- * @param  mixed $object
264 250
  * @return bool
265 251
  */
266 252
 function satisfies() {
@@ -294,8 +280,6 @@  discard block
 block discarded – undo
294 280
  * ```
295 281
  *
296 282
  * @signature {String: (a -> Boolean)} -> {k : a} -> Boolean
297
- * @param  array $predicates
298
- * @param  mixed $object
299 283
  * @return bool
300 284
  */
301 285
 function satisfiesAll() {
@@ -335,8 +319,6 @@  discard block
 block discarded – undo
335 319
  * ```
336 320
  *
337 321
  * @signature {String: (a -> Boolean)} -> {k : a} -> Boolean
338
- * @param  array $predicates
339
- * @param  mixed $object
340 322
  * @return bool
341 323
  */
342 324
 function satisfiesAny() {
Please login to merge, or discard this patch.