1 | <?php |
||
16 | final class TemplateBlock |
||
17 | { |
||
18 | /** @var string */ |
||
19 | private $name; |
||
20 | |||
21 | /** @var string */ |
||
22 | private $template; |
||
23 | |||
24 | /** @var int */ |
||
25 | private $priority; |
||
26 | |||
27 | /** @var bool */ |
||
28 | private $enabled; |
||
29 | |||
30 | public function __construct( |
||
41 | |||
42 | public function getName(): string |
||
46 | |||
47 | public function getTemplate(): string |
||
51 | |||
52 | public function getPriority(): int |
||
56 | |||
57 | public function isEnabled(): bool |
||
61 | } |
||
62 |