Phpmig\Console\Command\AbstractCommand::bootstrap PHP Метод

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

Bootstrap phpmig
protected bootstrap ( Symfony\Component\Console\Input\InputInterface $input, Symfony\Component\Console\Output\OutputInterface $output ) : void
$input Symfony\Component\Console\Input\InputInterface
$output Symfony\Component\Console\Output\OutputInterface
Результат void
    protected function bootstrap(InputInterface $input, OutputInterface $output)
    {
        $this->setBootstrap($this->findBootstrapFile($input->getOption('bootstrap')));
        $container = $this->bootstrapContainer();
        $this->setContainer($container);
        $this->setAdapter($this->bootstrapAdapter($input));
        $this->setMigrations($this->bootstrapMigrations($input, $output));
        $container['phpmig.migrator'] = $this->bootstrapMigrator($output);
    }