Total Complexity | 1 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | trait SimpleMethodCallGeneratorTrait |
||
15 | { |
||
16 | /** |
||
17 | * {@inheritdoc} |
||
18 | */ |
||
19 | 28 | public function generateCode(string $name, AttributesProcessorGenerator $generator, ReflectionAttribute $attribute): void |
|
24 | } |
||
25 | |||
26 | /** |
||
27 | * Called method name |
||
28 | * |
||
29 | * @return literal-string |
||
|
|||
30 | */ |
||
31 | abstract private function methodName(): string; |
||
32 | } |
||
33 |