@@ -42,7 +42,7 @@ public static function exists(string $currency): bool
4242 self ::readEntry (['Names ' , $ currency , self ::INDEX_NAME ]);
4343
4444 return true ;
45- } catch (MissingResourceException $ e ) {
45+ } catch (MissingResourceException ) {
4646 return false ;
4747 }
4848 }
@@ -91,7 +91,7 @@ public static function getFractionDigits(string $currency): int
9191 {
9292 try {
9393 return self ::readEntry (['Meta ' , $ currency , self ::INDEX_FRACTION_DIGITS ], 'meta ' );
94- } catch (MissingResourceException $ e ) {
94+ } catch (MissingResourceException ) {
9595 return self ::readEntry (['Meta ' , 'DEFAULT ' , self ::INDEX_FRACTION_DIGITS ], 'meta ' );
9696 }
9797 }
@@ -100,7 +100,7 @@ public static function getRoundingIncrement(string $currency): int
100100 {
101101 try {
102102 return self ::readEntry (['Meta ' , $ currency , self ::INDEX_ROUNDING_INCREMENT ], 'meta ' );
103- } catch (MissingResourceException $ e ) {
103+ } catch (MissingResourceException ) {
104104 return self ::readEntry (['Meta ' , 'DEFAULT ' , self ::INDEX_ROUNDING_INCREMENT ], 'meta ' );
105105 }
106106 }
@@ -109,7 +109,7 @@ public static function getCashFractionDigits(string $currency): int
109109 {
110110 try {
111111 return self ::readEntry (['Meta ' , $ currency , self ::INDEX_CASH_FRACTION_DIGITS ], 'meta ' );
112- } catch (MissingResourceException $ e ) {
112+ } catch (MissingResourceException ) {
113113 return self ::readEntry (['Meta ' , 'DEFAULT ' , self ::INDEX_CASH_FRACTION_DIGITS ], 'meta ' );
114114 }
115115 }
@@ -118,7 +118,7 @@ public static function getCashRoundingIncrement(string $currency): int
118118 {
119119 try {
120120 return self ::readEntry (['Meta ' , $ currency , self ::INDEX_CASH_ROUNDING_INCREMENT ], 'meta ' );
121- } catch (MissingResourceException $ e ) {
121+ } catch (MissingResourceException ) {
122122 return self ::readEntry (['Meta ' , 'DEFAULT ' , self ::INDEX_CASH_ROUNDING_INCREMENT ], 'meta ' );
123123 }
124124 }
0 commit comments