Total Complexity | 5 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
14 | #[Package('storefront')] |
||
15 | class CompileThemeMessage implements AsyncMessageInterface |
||
16 | { |
||
17 | public function __construct( |
||
18 | private readonly string $salesChannelId, |
||
19 | private readonly string $themeId, |
||
20 | private readonly bool $withAssets, |
||
21 | private readonly Context $context |
||
22 | ) { |
||
23 | } |
||
24 | |||
25 | public function getSalesChannelId(): string |
||
26 | { |
||
27 | return $this->salesChannelId; |
||
28 | } |
||
29 | |||
30 | public function getThemeId(): string |
||
31 | { |
||
32 | return $this->themeId; |
||
33 | } |
||
34 | |||
35 | public function isWithAssets(): bool |
||
38 | } |
||
39 | |||
40 | public function getContext(): Context |
||
43 | } |
||
44 | } |
||
45 |