@@ -112,7 +112,7 @@ public function testManFiniteFloatWithDefault4()
112112 *
113113 * @dataProvider invalidManFiniteFloatCases
114114 */
115- public function testManFiniteFloatWithInvalidValues ($ value ): void
115+ public function testManFiniteFloatWithInvalidValues (mixed $ value ): void
116116 {
117117 $ test = Cast::isManFloat ($ value );
118118 self ::assertFalse ($ test );
@@ -130,7 +130,7 @@ public function testManFiniteFloatWithInvalidValues($value): void
130130 *
131131 * @dataProvider validManFiniteFloatCases
132132 */
133- public function testManFiniteFloatWithValidValues ($ value , float $ expected ): void
133+ public function testManFiniteFloatWithValidValues (mixed $ value , float $ expected ): void
134134 {
135135 $ test = Cast::isManFloat ($ value );
136136 self ::assertTrue ($ test );
@@ -206,7 +206,7 @@ public function testOptFiniteFloatWithDefault4()
206206 *
207207 * @dataProvider invalidOptFiniteFloatCases
208208 */
209- public function testOptFiniteFloatWithInvalidValues ($ value ): void
209+ public function testOptFiniteFloatWithInvalidValues (mixed $ value ): void
210210 {
211211 $ test = Cast::isOptFloat ($ value );
212212 self ::assertFalse ($ test );
@@ -224,7 +224,7 @@ public function testOptFiniteFloatWithInvalidValues($value): void
224224 *
225225 * @dataProvider validOptFiniteFloatCases
226226 */
227- public function testOptFiniteFloatWithValidValues ($ value , ?float $ expected ): void
227+ public function testOptFiniteFloatWithValidValues (mixed $ value , ?float $ expected ): void
228228 {
229229 $ test = Cast::isOptFloat ($ value );
230230 self ::assertTrue ($ test );
0 commit comments