Total Complexity | 4 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
17 | abstract class block implements block_interface |
||
18 | { |
||
19 | /** @var string */ |
||
20 | protected $name; |
||
21 | |||
22 | /** |
||
23 | * @inheritdoc |
||
24 | */ |
||
25 | public function get_name() |
||
26 | { |
||
27 | return $this->name; |
||
28 | } |
||
29 | 135 | ||
30 | /** |
||
31 | 135 | * {@inheritdoc} |
|
32 | 135 | */ |
|
33 | public function set_name($name) |
||
36 | } |
||
37 | 2 | ||
38 | /** |
||
39 | 2 | * {@inheritdoc} |
|
40 | */ |
||
41 | public function get_config(array $settings) |
||
44 | } |
||
45 | 3 | ||
46 | /** |
||
47 | 3 | * {@inheritdoc} |
|
48 | 3 | */ |
|
49 | public function get_template() |
||
52 | } |
||
53 | } |
||
54 |