@@ -674,12 +674,12 @@ public function parseProvider()
674674 return [
675675 ['prefix1 ' , false , '->parse() does not parse a number with a string prefix. ' , 0 ],
676676 ['prefix1 ' , false , '->parse() does not parse a number with a string prefix. ' , 0 , false ],
677- ['1.4suffix ' , ( float ) 1.4 , '->parse() parses a number with a string suffix. ' , 3 ],
678- ['1.4suffix ' , ( float ) 1.4 , '->parse() parses a number with a string suffix. ' , 3 , false ],
677+ ['1.4suffix ' , 1.4 , '->parse() parses a number with a string suffix. ' , 3 ],
678+ ['1.4suffix ' , 1.4 , '->parse() parses a number with a string suffix. ' , 3 , false ],
679679 ['1,234.4suffix ' , 1234.4 , '->parse() parses a number with a string suffix. ' , 7 ],
680680 ['1,234.4suffix ' , 1.0 , '->parse() parses a number with a string suffix. ' , 1 , false ],
681- ['-.4suffix ' , ( float ) -0.4 , '->parse() parses a negative dot float with suffix. ' , 3 ],
682- ['-.4suffix ' , ( float ) -0.4 , '->parse() parses a negative dot float with suffix. ' , 3 , false ],
681+ ['-.4suffix ' , -0.4 , '->parse() parses a negative dot float with suffix. ' , 3 ],
682+ ['-.4suffix ' , -0.4 , '->parse() parses a negative dot float with suffix. ' , 3 , false ],
683683 [',4 ' , false , '->parse() does not parse when invalid grouping used. ' , 0 ],
684684 [',4 ' , false , '->parse() does not parse when invalid grouping used. ' , 0 , false ],
685685 ['123,4 ' , false , '->parse() does not parse when invalid grouping used. ' , 0 ],
0 commit comments