Ejemplo n.º 1
0
 public function __construct(EntityManager $em, GenerateMyUri $generateMyUri, Crypt $cryptService)
 {
     $this->entity = 'Domain\\User\\Entity\\User';
     $this->generateMyUri = $generateMyUri;
     $this->cryptService = $cryptService;
     parent::__construct($em);
 }
Ejemplo n.º 2
0
 public function __construct(EntityManager $em, Crypt $cryptService)
 {
     $this->entity = 'Domain\\User\\Entity\\Login';
     $this->cryptService = $cryptService;
     parent::__construct($em);
 }