Kraken\Root\Provider\CommandProvider::register PHP Method

register() protected method

protected register ( Kraken\Container\ContainerInterface $container )
$container Kraken\Container\ContainerInterface
    protected function register(ContainerInterface $container)
    {
        $factory = new CommandFactory();
        $manager = new CommandManager();
        $container->instance('Kraken\\Runtime\\Command\\CommandFactoryInterface', $factory);
        $container->instance('Kraken\\Runtime\\Command\\CommandManagerInterface', $manager);
    }