Total Complexity | 4 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | class Ccg |
||
19 | { |
||
20 | private $config; |
||
21 | private $terminal; |
||
22 | private $filesystem; |
||
23 | |||
24 | function __construct( |
||
25 | Config $config, |
||
26 | Terminal $terminal, |
||
27 | Filesystem $filesystem |
||
28 | ) |
||
29 | { |
||
30 | $this->config = $config; |
||
31 | $this->terminal = $terminal; |
||
32 | $this->filesystem = $filesystem; |
||
33 | } |
||
34 | |||
35 | public function generate() |
||
54 | } |
||
55 | } |
||
56 |