Sylius\Behat\Page\Shop\HomePageInterface::getAvailableCurrencies PHP Метод

getAvailableCurrencies() публичный Метод

public getAvailableCurrencies ( ) : array
Результат array
    public function getAvailableCurrencies();

Usage Example

Пример #1
0
 /**
  * @Then I should not be able to shop using the :currencyCode currency
  */
 public function iShouldNotBeAbleToShopUsingTheCurrency($currencyCode)
 {
     $this->homePage->open();
     if (in_array($currencyCode, $this->homePage->getAvailableCurrencies(), true)) {
         throw new \InvalidArgumentException(sprintf('Expected "%s" not to be in "%s"', $currencyCode, implode('", "', $this->homePage->getAvailableCurrencies())));
     }
 }