| 1 | <?php |
||
| 16 | class CurrencyProvider extends BaseProvider |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @param CurrencyRepository $currencyRepository |
||
| 20 | */ |
||
| 21 | public function __construct(CurrencyRepository $currencyRepository) |
||
| 25 | |||
| 26 | /** |
||
| 27 | * {@inheritdoc} |
||
| 28 | */ |
||
| 29 | public function getAvailableCurrencies() |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Gets the default currency. |
||
| 38 | * |
||
| 39 | * @return null|Sylius\Component\Currency\Model\CurrencyInterface |
||
| 40 | */ |
||
| 41 | public function getDefaultCurrency() |
||
| 49 | |||
| 50 | /** |
||
| 51 | * Gets the default currency. |
||
| 52 | * |
||
| 53 | * @return array |
||
| 54 | */ |
||
| 55 | public function getEnabledCurrencies() |
||
| 60 | } |
||
| 61 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.