vendor/kunstmaan/sensio-generator-bundle/Command/GenerateDoctrineCommand.php line 16

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Sensio\Bundle\GeneratorBundle\Command;
  11. use Doctrine\Bundle\DoctrineBundle\Mapping\DisconnectedMetadataFactory;
  12. abstract class GenerateDoctrineCommand extends GeneratorCommand
  13. {
  14.     public function isEnabled()
  15.     {
  16.         return class_exists('Doctrine\\Bundle\\DoctrineBundle\\DoctrineBundle');
  17.     }
  18.     protected function parseShortcutNotation($shortcut)
  19.     {
  20.         $entity str_replace('/''\\'$shortcut);
  21.         if (false === $pos strpos($entity':')) {
  22.             throw new \InvalidArgumentException(sprintf('The entity name must contain a : ("%s" given, expecting something like AcmeBlogBundle:Blog/Post)'$entity));
  23.         }
  24.         return array(substr($entity0$pos), substr($entity$pos 1));
  25.     }
  26.     protected function getEntityMetadata($entity)
  27.     {
  28.         $factory = new DisconnectedMetadataFactory($this->getContainer()->get('doctrine'));
  29.         return $factory->getClassMetadata($entity)->getMetadata();
  30.     }
  31. }