Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
20 | public function make(string $moduleName): GenerateableInterface |
||
21 | { |
||
22 | $this |
||
23 | ->setQualifiedName("Saci\\{$moduleName}\\Mapping") |
||
24 | ->setInterfaces(['MappingInterface']) |
||
25 | ->setMethod( |
||
26 | PhpMethod::create('__invoke') |
||
27 | ->setType('array') |
||
28 | ->setDescription('Retorna o mapeamento dos commands') |
||
29 | ) |
||
30 | ->declareUse('GrupoCoqueiro\\CommandBus\\MappingInterface'); |
||
31 | |||
32 | return $this; |
||
33 | } |
||
34 | } |