Total Complexity | 3 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
13 | class Application extends ConsoleApplication |
||
14 | { |
||
15 | use SetUpContainerTrait; |
||
16 | |||
17 | /** @var Container */ |
||
18 | private $container; |
||
19 | |||
20 | 5 | public function __construct(Container $container) |
|
21 | { |
||
22 | 5 | parent::__construct('rfclinc', '0.1.0'); |
|
23 | 5 | $this->container = $container; |
|
24 | 5 | } |
|
25 | |||
26 | 5 | public function container(): Container |
|
29 | } |
||
30 | |||
31 | 5 | public static function createApplication(): self |
|
46 |