Contao\CoreBundle\Command\DoctrineMigrationsDiffCommand::execute PHP Метод

execute() публичный Метод

public execute ( Symfony\Component\Console\Input\InputInterface $input, Symfony\Component\Console\Output\OutputInterface $output )
$input Symfony\Component\Console\Input\InputInterface
$output Symfony\Component\Console\Output\OutputInterface
    public function execute(InputInterface $input, OutputInterface $output)
    {
        /** @var Application $application */
        $application = $this->getApplication();
        DoctrineCommandHelper::setApplicationConnection($application, $input->getOption('db-configuration'));
        DoctrineCommand::configureMigrations($application->getKernel()->getContainer(), $this->getMigrationConfiguration($input, $output));
        parent::execute($input, $output);
    }
DoctrineMigrationsDiffCommand