Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
19 | class InterfaceModel implements InterfaceModelInterface |
||
20 | { |
||
21 | use NamespaceTrait; |
||
22 | use NameTrait; |
||
23 | |||
24 | /** |
||
25 | * @var FunctionModel[] $functions Class functions. |
||
26 | */ |
||
27 | private $functions = []; |
||
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | */ |
||
32 | public function addFunction(FunctionModelInterface $function): void |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * {@inheritdoc} |
||
39 | */ |
||
40 | public function getFunctions(): array |
||
45 |