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

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

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