소스 검색

[DoctrineBundle] removed doctrine:generate:proxies as this command is never needed in a Symfony2 context

Fabien Potencier 14 년 전
부모
커밋
116e004f7d
1개의 변경된 파일0개의 추가작업 그리고 55개의 파일을 삭제
  1. 0 55
      src/Symfony/Bundle/DoctrineBundle/Command/Proxy/GenerateProxiesDoctrineCommand.php

+ 0 - 55
src/Symfony/Bundle/DoctrineBundle/Command/Proxy/GenerateProxiesDoctrineCommand.php

@@ -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);
-    }
-}