public function __construct()
 {
     $this->table = static::TABLE_GAIN_LOSS;
     parent::__construct();
 }
Beispiel #2
0
 /**
  * CommentsRepository constructor.
  * @param CommentsMapper $mapper
  */
 public function __construct(CommentsMapper $mapper)
 {
     parent::__construct($mapper);
     $this->mapper = $mapper;
 }
Beispiel #3
0
 /**
  * GalleriesRepository constructor.
  * @param GalleriesMapper $mapper
  */
 public function __construct(GalleriesMapper $mapper)
 {
     parent::__construct($mapper);
     $this->mapper = $mapper;
 }
 public function __construct()
 {
     parent::__construct();
 }
Beispiel #5
0
 /**
  * Init repo.
  *
  * @param string $className
  * @param array  $defaults
  */
 public function __construct($className)
 {
     $this->className = $className;
     parent::__construct();
 }
Beispiel #6
0
 /**
  * SearchRepository constructor.
  * @param SearchMapper $mapper
  */
 public function __construct(SearchMapper $mapper)
 {
     parent::__construct($mapper);
     $this->mapper = $mapper;
 }
 /**
  * Constructor
  */
 public function __construct()
 {
     $this->collection = static::DOCUMENT_TRANSACTION;
     parent::__construct();
 }
Beispiel #8
0
 /**
  * ArticlesRepository constructor.
  * @param ArticlesMapper $mapper
  */
 public function __construct(ArticlesMapper $mapper)
 {
     parent::__construct($mapper);
     $this->mapper = $mapper;
 }
Beispiel #9
0
 /**
  * PicturesRepository constructor.
  * @param PicturesMapper $mapper
  */
 public function __construct(PicturesMapper $mapper)
 {
     parent::__construct($mapper);
     $this->mapper = $mapper;
 }
 /**
  * Constructor
  */
 public function __construct()
 {
     $this->collection = static::DOCUMENT_UNREALIZED;
     parent::__construct();
 }
 /**
  * Constructor
  */
 public function __construct()
 {
     $this->collection = static::DOCUMENT_SECURITY;
     parent::__construct();
 }
Beispiel #12
0
 /**
  * FooterRepository constructor.
  * @param FooterMapper $mapper
  */
 public function __construct(FooterMapper $mapper)
 {
     parent::__construct($mapper);
     $this->mapper = $mapper;
 }