Total Complexity | 9 |
Total Lines | 74 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
15 | class Command |
||
16 | { |
||
17 | /** @var string */ |
||
18 | private $name; |
||
19 | /** |
||
20 | * @var Module |
||
21 | */ |
||
22 | private $module; |
||
23 | |||
24 | 9 | public function __construct(string $name, Module $module) |
|
25 | { |
||
26 | 9 | $this->name = $name; |
|
27 | 9 | $this->module = $module; |
|
28 | 9 | } |
|
29 | |||
30 | /** |
||
31 | * @param string $name |
||
32 | * @param Module $module |
||
33 | * @return Command |
||
34 | */ |
||
35 | 1 | public static function create(string $name, Module $module): Command |
|
36 | { |
||
37 | 1 | $command = new self($name, $module); |
|
38 | 1 | SymfonyEventAdapter::getInstance()->publish( |
|
39 | 1 | new CommandWasCreated($command) |
|
40 | ); |
||
41 | 1 | return $command; |
|
42 | } |
||
43 | |||
44 | /** |
||
45 | * @return string |
||
46 | */ |
||
47 | 6 | public function getName(): string |
|
48 | { |
||
49 | 6 | return $this->name; |
|
50 | } |
||
51 | |||
52 | /** |
||
53 | * @return string |
||
54 | */ |
||
55 | 4 | public function getDiretorio(): string |
|
56 | { |
||
57 | 4 | return $this->module->getDiretorio(); |
|
58 | } |
||
59 | |||
60 | 3 | public function getClassNameCommand() |
|
63 | } |
||
64 | |||
65 | 2 | public function getLocalFileCommand(): string |
|
66 | { |
||
71 | } |
||
72 | |||
73 | 3 | public function getClassNameCommandHandler() |
|
74 | { |
||
75 | 3 | return ucfirst(strtolower($this->getName())) . 'CommandHandler'; |
|
76 | } |
||
77 | |||
78 | 2 | public function getModule(): Module |
|
79 | { |
||
80 | 2 | return $this->module; |
|
81 | } |
||
82 | |||
83 | 2 | public function getLocalFileCommandHandler() |
|
89 | } |
||
90 | } |