コード例 #1
0
 public function __construct()
 {
     $this->table = static::TABLE_GAIN_LOSS;
     parent::__construct();
 }
コード例 #2
0
ファイル: CommentsRepository.php プロジェクト: svatekr/rsrs
 /**
  * CommentsRepository constructor.
  * @param CommentsMapper $mapper
  */
 public function __construct(CommentsMapper $mapper)
 {
     parent::__construct($mapper);
     $this->mapper = $mapper;
 }
コード例 #3
0
ファイル: GalleriesRepository.php プロジェクト: svatekr/rsrs
 /**
  * GalleriesRepository constructor.
  * @param GalleriesMapper $mapper
  */
 public function __construct(GalleriesMapper $mapper)
 {
     parent::__construct($mapper);
     $this->mapper = $mapper;
 }
コード例 #4
0
 public function __construct()
 {
     parent::__construct();
 }
コード例 #5
0
ファイル: Stub.php プロジェクト: guratr/cruddy
 /**
  * Init repo.
  *
  * @param string $className
  * @param array  $defaults
  */
 public function __construct($className)
 {
     $this->className = $className;
     parent::__construct();
 }
コード例 #6
0
ファイル: SearchRepository.php プロジェクト: svatekr/rsrs
 /**
  * SearchRepository constructor.
  * @param SearchMapper $mapper
  */
 public function __construct(SearchMapper $mapper)
 {
     parent::__construct($mapper);
     $this->mapper = $mapper;
 }
コード例 #7
0
 /**
  * Constructor
  */
 public function __construct()
 {
     $this->collection = static::DOCUMENT_TRANSACTION;
     parent::__construct();
 }
コード例 #8
0
ファイル: ArticlesRepository.php プロジェクト: svatekr/rsrs
 /**
  * ArticlesRepository constructor.
  * @param ArticlesMapper $mapper
  */
 public function __construct(ArticlesMapper $mapper)
 {
     parent::__construct($mapper);
     $this->mapper = $mapper;
 }
コード例 #9
0
ファイル: PicturesRepository.php プロジェクト: svatekr/rsrs
 /**
  * PicturesRepository constructor.
  * @param PicturesMapper $mapper
  */
 public function __construct(PicturesMapper $mapper)
 {
     parent::__construct($mapper);
     $this->mapper = $mapper;
 }
コード例 #10
0
 /**
  * Constructor
  */
 public function __construct()
 {
     $this->collection = static::DOCUMENT_UNREALIZED;
     parent::__construct();
 }
コード例 #11
0
 /**
  * Constructor
  */
 public function __construct()
 {
     $this->collection = static::DOCUMENT_SECURITY;
     parent::__construct();
 }
コード例 #12
0
ファイル: FooterRepository.php プロジェクト: svatekr/rsrs
 /**
  * FooterRepository constructor.
  * @param FooterMapper $mapper
  */
 public function __construct(FooterMapper $mapper)
 {
     parent::__construct($mapper);
     $this->mapper = $mapper;
 }