Sylius\Behat\Page\Admin\Customer\ShowPageInterface::getDefaultAddress PHP Метод

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

public getDefaultAddress ( ) : string
Результат string
    public function getDefaultAddress();

Usage Example

Пример #1
0
 /**
  * @Then his default address should be :defaultAddress
  */
 public function hisShippingAddressShouldBe($defaultAddress)
 {
     Assert::same(str_replace(',', '', $defaultAddress), $this->showPage->getDefaultAddress(), 'Customer\'s default address should be "%s", but it is not.');
 }