Total Complexity | 4 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
12 | class Summery extends AbstractTag |
||
13 | { |
||
14 | /** |
||
15 | * Class constructor. |
||
16 | */ |
||
17 | 8 | public function __construct() |
|
18 | { |
||
19 | 8 | parent::__construct('summery'); |
|
20 | } |
||
21 | |||
22 | /** |
||
23 | * Process a notation. |
||
24 | * |
||
25 | * @param array $notations |
||
26 | * @param string $value |
||
27 | * @return array |
||
28 | */ |
||
29 | 7 | public function process(array $notations, string $value): array |
|
43 | } |
||
44 | } |
||
45 |