@@ -51,9 +51,6 @@ public function dataProvider(): array
5151 /**
5252 * @dataProvider dataProvider
5353 *
54- * @param string $key
55- * @param mixed $value
56- *
5754 * @throws InvalidArgumentException
5855 */
5956 public function testSet (string $ key , mixed $ value ): void
@@ -66,9 +63,6 @@ public function testSet(string $key, mixed $value): void
6663 /**
6764 * @dataProvider dataProvider
6865 *
69- * @param string $key
70- * @param mixed $value
71- *
7266 * @throws InvalidArgumentException
7367 */
7468 public function testGet (string $ key , mixed $ value ): void
@@ -82,9 +76,6 @@ public function testGet(string $key, mixed $value): void
8276 /**
8377 * @dataProvider dataProvider
8478 *
85- * @param string $key
86- * @param mixed $value
87- *
8879 * @throws InvalidArgumentException
8980 */
9081 public function testValueInCacheCannotBeChanged (string $ key , mixed $ value ): void
@@ -106,9 +97,6 @@ public function testValueInCacheCannotBeChanged(string $key, mixed $value): void
10697 /**
10798 * @dataProvider dataProvider
10899 *
109- * @param string $key
110- * @param mixed $value
111- *
112100 * @throws InvalidArgumentException
113101 */
114102 public function testHas (string $ key , mixed $ value ): void
@@ -131,9 +119,6 @@ public function testGetNonExistent(): void
131119 /**
132120 * @dataProvider dataProvider
133121 *
134- * @param string $key
135- * @param mixed $value
136- *
137122 * @throws InvalidArgumentException
138123 */
139124 public function testDelete (string $ key , mixed $ value ): void
@@ -148,9 +133,6 @@ public function testDelete(string $key, mixed $value): void
148133 /**
149134 * @dataProvider dataProvider
150135 *
151- * @param string $key
152- * @param mixed $value
153- *
154136 * @throws InvalidArgumentException
155137 */
156138 public function testClear (string $ key , mixed $ value ): void
@@ -177,8 +159,6 @@ public function dataProviderSetMultiple(): array
177159 /**
178160 * @dataProvider dataProviderSetMultiple
179161 *
180- * @param int|null $ttl
181- *
182162 * @throws InvalidArgumentException
183163 */
184164 public function testSetMultiple (?int $ ttl ): void
@@ -251,9 +231,6 @@ public function dataProviderNormalizeTtl(): array
251231 /**
252232 * @dataProvider dataProviderNormalizeTtl
253233 *
254- * @param mixed $ttl
255- * @param mixed $expectedResult
256- *
257234 * @throws ReflectionException
258235 */
259236 public function testNormalizeTtl (mixed $ ttl , mixed $ expectedResult ): void
@@ -300,9 +277,6 @@ public function getIterator(): ArrayIterator
300277 /**
301278 * @dataProvider iterableProvider
302279 *
303- * @param array $array
304- * @param iterable $iterable
305- *
306280 * @throws InvalidArgumentException
307281 */
308282 public function testValuesAsIterable (array $ array , iterable $ iterable ): void
@@ -338,8 +312,6 @@ public function invalidKeyProvider(): array
338312
339313 /**
340314 * @dataProvider invalidKeyProvider
341- *
342- * @param string $key
343315 */
344316 public function testGetThrowExceptionForInvalidKey (string $ key ): void
345317 {
@@ -349,8 +321,6 @@ public function testGetThrowExceptionForInvalidKey(string $key): void
349321
350322 /**
351323 * @dataProvider invalidKeyProvider
352- *
353- * @param string $key
354324 */
355325 public function testSetThrowExceptionForInvalidKey (string $ key ): void
356326 {
@@ -360,8 +330,6 @@ public function testSetThrowExceptionForInvalidKey(string $key): void
360330
361331 /**
362332 * @dataProvider invalidKeyProvider
363- *
364- * @param string $key
365333 */
366334 public function testDeleteThrowExceptionForInvalidKey (string $ key ): void
367335 {
@@ -371,8 +339,6 @@ public function testDeleteThrowExceptionForInvalidKey(string $key): void
371339
372340 /**
373341 * @dataProvider invalidKeyProvider
374- *
375- * @param string $key
376342 */
377343 public function testGetMultipleThrowExceptionForInvalidKeys (string $ key ): void
378344 {
@@ -382,8 +348,6 @@ public function testGetMultipleThrowExceptionForInvalidKeys(string $key): void
382348
383349 /**
384350 * @dataProvider invalidKeyProvider
385- *
386- * @param string $key
387351 */
388352 public function testDeleteMultipleThrowExceptionForInvalidKeys (string $ key ): void
389353 {
@@ -393,8 +357,6 @@ public function testDeleteMultipleThrowExceptionForInvalidKeys(string $key): voi
393357
394358 /**
395359 * @dataProvider invalidKeyProvider
396- *
397- * @param string $key
398360 */
399361 public function testHasThrowExceptionForInvalidKey (string $ key ): void
400362 {
0 commit comments