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