WellCommerce\Bundle\DoctrineBundle\Command\GenerateEntityExtraCommand::executeSchemaUpdate PHP Метод

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

Executes the schema update through separate process
protected executeSchemaUpdate ( Symfony\Component\Console\Output\OutputInterface $output )
$output Symfony\Component\Console\Output\OutputInterface
    protected function executeSchemaUpdate(OutputInterface $output)
    {
        $arguments = ['app/console', 'doctrine:schema:update', '--force'];
        $process = $this->environmentHelper->getProcess($arguments, 360);
        $process->run();
        $output->write($process->getOutput());
    }