Total Complexity | 3 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | class CommandsBootstrap |
||
8 | { |
||
9 | protected $commands; |
||
10 | |||
11 | protected $container; |
||
12 | |||
13 | public function __construct(array $commands, AppContainer $container) |
||
14 | { |
||
15 | $this->commands = $commands; |
||
16 | $this->container = $container; |
||
17 | } |
||
18 | |||
19 | public function register(Application $app) |
||
23 | } |
||
24 | } |
||
26 |