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

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

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

Usage Example

Пример #1
0
 /**
  * @Then I should not see a homepage from :theme theme
  */
 public function iShouldNotSeeThemedHomepage(ThemeInterface $theme)
 {
     $content = file_get_contents(rtrim($theme->getPath(), '/') . '/SyliusShopBundle/views/Homepage/index.html.twig');
     Assert::notSame($this->homePage->getContents(), $content);
 }
All Usage Examples Of Sylius\Behat\Page\Shop\HomePageInterface::getContents