Total Complexity | 2 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
10 | abstract class Grammar |
||
11 | { |
||
12 | /** @return array<int, <mixed>> */ |
||
|
|||
13 | abstract public function getDefinition(): array; |
||
14 | |||
15 | /** @return array<string, string> */ |
||
16 | 2 | public function getInternalFunctions(): array |
|
17 | { |
||
18 | 2 | return []; |
|
19 | } |
||
20 | |||
21 | /** @return array<string, string> */ |
||
22 | 2 | public function getInternalMethods(): array |
|
25 | } |
||
26 | } |
||
27 |