| Total Complexity | 2 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class CommandFactory |
||
| 10 | { |
||
| 11 | private $io; |
||
| 12 | private $yentu; |
||
| 13 | private $manipulatorFactory; |
||
| 14 | |||
| 15 | 41 | public function __construct(Io $io, DatabaseManipulatorFactory $manipulatorFactory, Yentu $yentu) |
|
| 16 | { |
||
| 17 | 41 | $this->io = $io; |
|
| 18 | 41 | $this->manipulatorFactory = $manipulatorFactory; |
|
| 19 | 41 | $this->yentu = $yentu; |
|
| 20 | 41 | } |
|
| 21 | |||
| 22 | 33 | public function createCommand($command, $options = []) |
|
| 26 | } |
||
| 27 | } |
||
| 28 |