File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -736,7 +736,7 @@ public function testGetNumericCodeFailsIfNoNumericEquivalent($currency)
736736
737737 public static function provideValidNumericCodes ()
738738 {
739- $ numericToAlpha3 = $ this -> getNumericToAlpha3Mapping ();
739+ $ numericToAlpha3 = self :: getNumericToAlpha3Mapping ();
740740
741741 return array_map (
742742 function ($ numeric , $ alpha3 ) { return [$ numeric , $ alpha3 ]; },
@@ -761,7 +761,7 @@ public function testForNumericCode($numeric, $expected)
761761
762762 public static function provideInvalidNumericCodes ()
763763 {
764- $ validNumericCodes = array_keys ($ this -> getNumericToAlpha3Mapping ());
764+ $ validNumericCodes = array_keys (self :: getNumericToAlpha3Mapping ());
765765 $ invalidNumericCodes = array_diff (range (0 , 1000 ), $ validNumericCodes );
766766
767767 return array_map (
@@ -791,7 +791,7 @@ public function testExists()
791791 $ this ->assertFalse (Currencies::exists ('XXX ' ));
792792 }
793793
794- private function getNumericToAlpha3Mapping ()
794+ private static function getNumericToAlpha3Mapping ()
795795 {
796796 $ numericToAlpha3 = [];
797797
You can’t perform that action at this time.
0 commit comments