| 1 | <?php |
||
| 5 | abstract class Component implements ComponentInterface |
||
| 6 | { |
||
| 7 | /** @var string */ |
||
| 8 | protected $text; |
||
| 9 | |||
| 10 | /** @var string|null */ |
||
| 11 | protected $layout; |
||
| 12 | |||
| 13 | public function __construct(string $text, string $layout = null) |
||
| 18 | |||
| 19 | public function getText(): string |
||
| 23 | |||
| 24 | abstract public function getRole(): string; |
||
| 25 | |||
| 26 | public function getLayout(): ?string |
||
| 30 | } |
||
| 31 |