1 | <?php |
||
20 | class Tenant extends BaseTenant implements TenantInterface |
||
21 | { |
||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | protected $themeName; |
||
26 | |||
27 | /** |
||
28 | * @var RouteInterface |
||
29 | */ |
||
30 | protected $homepage; |
||
31 | |||
32 | /** |
||
33 | * @var string |
||
34 | */ |
||
35 | protected $domainName; |
||
36 | |||
37 | /** |
||
38 | * {@inheritdoc} |
||
39 | */ |
||
40 | 44 | public function getThemeName() |
|
44 | |||
45 | /** |
||
46 | * {@inheritdoc} |
||
47 | */ |
||
48 | 103 | public function setThemeName($themeName) |
|
52 | |||
53 | /** |
||
54 | * {@inheritdoc} |
||
55 | */ |
||
56 | 2 | public function getHomepage() |
|
60 | |||
61 | /** |
||
62 | * {@inheritdoc} |
||
63 | */ |
||
64 | 103 | public function setHomepage(RouteInterface $homepage) |
|
68 | |||
69 | /** |
||
70 | * {@inheritdoc} |
||
71 | */ |
||
72 | 6 | public function getDomainName() |
|
76 | |||
77 | /** |
||
78 | * {@inheritdoc} |
||
79 | */ |
||
80 | 1 | public function setDomainName($domainName) |
|
84 | } |
||
85 |