@@ -674,7 +674,7 @@ public function testGetSymbol($displayLocale)
674674 }
675675 }
676676
677- public function provideCurrencies ()
677+ public static function provideCurrencies ()
678678 {
679679 return array_map (
680680 function ($ currency ) { return [$ currency ]; },
@@ -701,7 +701,7 @@ public function testGetRoundingIncrement($currency)
701701 $ this ->assertIsNumeric (Currencies::getRoundingIncrement ($ currency ));
702702 }
703703
704- public function provideCurrenciesWithNumericEquivalent ()
704+ public static function provideCurrenciesWithNumericEquivalent ()
705705 {
706706 return array_map (
707707 function ($ value ) { return [$ value ]; },
@@ -717,7 +717,7 @@ public function testGetNumericCode($currency)
717717 $ this ->assertSame (self ::ALPHA3_TO_NUMERIC [$ currency ], Currencies::getNumericCode ($ currency ));
718718 }
719719
720- public function provideCurrenciesWithoutNumericEquivalent ()
720+ public static function provideCurrenciesWithoutNumericEquivalent ()
721721 {
722722 return array_map (
723723 function ($ value ) { return [$ value ]; },
@@ -734,7 +734,7 @@ public function testGetNumericCodeFailsIfNoNumericEquivalent($currency)
734734 Currencies::getNumericCode ($ currency );
735735 }
736736
737- public function provideValidNumericCodes ()
737+ public static function provideValidNumericCodes ()
738738 {
739739 $ numericToAlpha3 = $ this ->getNumericToAlpha3Mapping ();
740740
@@ -759,7 +759,7 @@ public function testForNumericCode($numeric, $expected)
759759 $ this ->assertSame ($ expected , $ actual );
760760 }
761761
762- public function provideInvalidNumericCodes ()
762+ public static function provideInvalidNumericCodes ()
763763 {
764764 $ validNumericCodes = array_keys ($ this ->getNumericToAlpha3Mapping ());
765765 $ invalidNumericCodes = array_diff (range (0 , 1000 ), $ validNumericCodes );
0 commit comments