Esempio n. 1
0
 /**
  * @param array $options
  * @return AppKernel
  */
 protected static function createKernel(array $options = array())
 {
     /** @var AppKernel $kernel */
     $kernel = parent::createKernel($options);
     if (isset($options['prepare_doctrine']) && $options['prepare_doctrine'] === true) {
         $kernel->setPrepareDoctrineAfterBoot(true);
     }
     return $kernel;
 }