Cml\Console\Commands\Migrate\AbstractCommand::loadManager PHP Метод

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

Load the migrations manager and inject the config
protected loadManager ( array $args, array $options )
$args array
$options array
    protected function loadManager($args, $options)
    {
        if (null === $this->getManager()) {
            $manager = new Manager($this->getConfig(), $args, $options);
            $this->setManager($manager);
        }
    }