Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
16 | class CommandClassMaker implements \Saci\Console\Domain\Services\ClassMaker |
||
17 | { |
||
18 | |||
19 | /** |
||
20 | * @var Command |
||
21 | */ |
||
22 | private $command; |
||
23 | |||
24 | 2 | public function __construct(Command $command) |
|
25 | { |
||
26 | 2 | $this->command = $command; |
|
27 | 2 | } |
|
28 | |||
29 | 2 | public function generate(PhpClass $phpClass): GenerateableInterface |
|
35 | } |
||
36 | } |