Kraken\Root\Runtime\Provider\CommandProvider::boot PHP Метод

boot() защищенный Метод

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