/**
  * @param RegistryInterface $registry
  * @param ManagerInterface  $manager
  */
 public function __construct(RegistryInterface $registry, $manager)
 {
     parent::__construct($registry);
     $this->manager = $manager;
 }
 /**
  * @param RegistryInterface $registry
  * @param Pool              $pool
  */
 public function __construct(RegistryInterface $registry, Pool $pool)
 {
     parent::__construct($registry);
     $this->pool = $pool;
 }
Exemplo n.º 3
0
 /**
  * @param \Symfony\Bridge\Doctrine\RegistryInterface $doctrine
  * @param mixed                                      $manager
  */
 public function __construct(RegistryInterface $doctrine, $manager)
 {
     parent::__construct($doctrine);
     $this->manager = $manager;
 }