Kraken\Root\Console\Server\Provider\CommandProvider::boot PHP Method

boot() protected method

protected boot ( Kraken\Container\ContainerInterface $core )
$core Kraken\Container\ContainerInterface
    protected function boot(ContainerInterface $core)
    {
        $config = $core->make('Kraken\\Config\\ConfigInterface');
        $runtime = $core->make('Kraken\\Runtime\\RuntimeContainerInterface');
        $factory = $core->make('Kraken\\Runtime\\Command\\CommandFactoryInterface');
        $manager = $core->make('Kraken\\Runtime\\Command\\CommandManagerInterface');
        $manager->import($this->getDefaultCommands($runtime));
        $manager->import($this->getAppCommands($config, $factory, $runtime));
    }