| Total Complexity | 2 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class Help extends AbstractController |
||
| 15 | { |
||
| 16 | private $config; |
||
| 17 | private $terminal; |
||
| 18 | private $filesystem; |
||
| 19 | |||
| 20 | use HelpTrait; |
||
| 21 | |||
| 22 | function __construct( |
||
| 23 | Config $config, |
||
| 24 | Terminal $terminal, |
||
| 25 | Filesystem $filesystem |
||
| 26 | ) |
||
| 27 | { |
||
| 28 | $this->config = $config; |
||
| 29 | $this->terminal = $terminal; |
||
| 30 | $this->filesystem = $filesystem; |
||
| 31 | } |
||
| 32 | |||
| 33 | /** |
||
| 34 | * help: |
||
| 35 | * Use for more information: |
||
| 36 | * php ccg.php <generator> help |
||
| 37 | * allowed generators: addon, addon-xml |
||
| 38 | */ |
||
| 39 | public function index() |
||
| 42 | } |
||
| 43 | } |
||
| 44 |