1 | <?php |
||
16 | class InnerBlock implements BehaviourInterface |
||
17 | { |
||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | private $name = ''; |
||
22 | |||
23 | /** |
||
24 | * @param string $name |
||
25 | */ |
||
26 | public function __construct(string $name) |
||
30 | |||
31 | /** |
||
32 | * Created block name. |
||
33 | * |
||
34 | * @return string |
||
35 | */ |
||
36 | public function blockName(): string |
||
40 | } |