|
@@ -1,55 +0,0 @@
|
|
|
-<?php
|
|
|
-
|
|
|
-/*
|
|
|
- * This file is part of the Symfony package.
|
|
|
- *
|
|
|
- * (c) Fabien Potencier <fabien@symfony.com>
|
|
|
- *
|
|
|
- * For the full copyright and license information, please view the LICENSE
|
|
|
- * file that was distributed with this source code.
|
|
|
- */
|
|
|
-
|
|
|
-namespace Symfony\Bundle\DoctrineBundle\Command\Proxy;
|
|
|
-
|
|
|
-use Symfony\Component\Console\Input\InputArgument;
|
|
|
-use Symfony\Component\Console\Input\InputOption;
|
|
|
-use Symfony\Component\Console\Input\InputInterface;
|
|
|
-use Symfony\Component\Console\Output\OutputInterface;
|
|
|
-use Symfony\Component\Console\Output\Output;
|
|
|
-use Doctrine\ORM\Tools\Console\Command\GenerateProxiesCommand;
|
|
|
-
|
|
|
-/**
|
|
|
- * Generate the Doctrine ORM entity proxies to your cache directory.
|
|
|
- *
|
|
|
- * @author Fabien Potencier <fabien@symfony.com>
|
|
|
- * @author Jonathan H. Wage <jonwage@gmail.com>
|
|
|
- */
|
|
|
-class GenerateProxiesDoctrineCommand extends GenerateProxiesCommand
|
|
|
-{
|
|
|
- protected function configure()
|
|
|
- {
|
|
|
- parent::configure();
|
|
|
-
|
|
|
- $this
|
|
|
- ->setName('doctrine:generate:proxies')
|
|
|
- ->addOption('em', null, InputOption::VALUE_OPTIONAL, 'The entity manager to use for this command')
|
|
|
- ->setHelp(<<<EOT
|
|
|
-The <info>doctrine:generate:proxies</info> command generates proxy classes for
|
|
|
-your default entity manager:
|
|
|
-
|
|
|
-<info>./app/console doctrine:generate:proxies</info>
|
|
|
-
|
|
|
-You can specify the entity manager you want to generate the proxies for:
|
|
|
-
|
|
|
-<info>./app/console doctrine:generate:proxies --em=name</info>
|
|
|
-EOT
|
|
|
- );
|
|
|
- }
|
|
|
-
|
|
|
- protected function execute(InputInterface $input, OutputInterface $output)
|
|
|
- {
|
|
|
- DoctrineCommandHelper::setApplicationEntityManager($this->getApplication(), $input->getOption('em'));
|
|
|
-
|
|
|
- return parent::execute($input, $output);
|
|
|
- }
|
|
|
-}
|