vendor/store.shopware.com/cbaxmodulmanufacturers/src/Components/ManufacturersPage.php line 8

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Cbax\ModulManufacturers\Components;
  3. use Shopware\Core\Content\Cms\CmsPageEntity;
  4. use Shopware\Storefront\Page\Page;
  5. class ManufacturersPage extends Page
  6. {
  7.     /**
  8.      * @var CmsPageEntity|null
  9.      */
  10.     protected $cmsPage;
  11.     public function getCmsPage(): ?CmsPageEntity
  12.     {
  13.         return $this->cmsPage;
  14.     }
  15.     public function setCmsPage(CmsPageEntity $cmsPage): void
  16.     {
  17.         $this->cmsPage $cmsPage;
  18.     }
  19. }