Example #1
0
 public function __construct($em)
 {
     parent::__construct($em, __NAMESPACE__ . "\\Gallery");
 }
Example #2
0
	public function __construct($em)
	{
		parent::__construct($em, __NAMESPACE__ . "\Photo");
	}
Example #3
0
	public function __construct($em)
	{
		parent::__construct($em, __NAMESPACE__ . "\Gallery");
		$this->photoService = new PhotoService($em);
	}
Example #4
0
 public function __construct($em, $repository)
 {
     parent::__construct($em, __NAMESPACE__ . "\\Photo");
     $this->repository = $repository;
 }
Example #5
0
 public function __construct($em)
 {
     parent::__construct($em, __NAMESPACE__ . "\\Comment");
 }
Example #6
0
 public function __construct($em, $class)
 {
     parent::__construct($em, $class);
 }