| 1 | <?php declare(strict_types=1); |
||
| 10 | final class CliApplication |
||
| 11 | { |
||
| 12 | public const APP_NAME = 'Phpmetrix'; |
||
| 13 | public const APP_VERSION = '0.1'; |
||
| 14 | |||
| 15 | private $dic; |
||
| 16 | |||
| 17 | private $cli; |
||
| 18 | |||
| 19 | public function __construct(ContainerInterface $dic, ExitInterface $exit) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param string[] $argv |
||
| 27 | * |
||
| 28 | * @throws ContainerExceptionInterface |
||
| 29 | */ |
||
| 30 | public function handle(array $argv) : void |
||
| 35 | } |
||
| 36 |