vendor/dvdw/platform-choice/src/System/SalesChannel/Struct/DashboardDomainExtension.php line 7

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Dvdw\PlatformChoice\System\SalesChannel\Struct;
  3. use Shopware\Core\Framework\Struct\Struct;
  4. class DashboardDomainExtension extends Struct
  5. {
  6.     public CONST KEY 'dashboardDomain';
  7.     protected string $domain;
  8.     public function __construct(string $domain)
  9.     {
  10.         $this->domain $domain;
  11.     }
  12.     public function getDomain(): string
  13.     {
  14.         return $this->domain;
  15.     }
  16. }