コード例 #1
0
ファイル: CategoryRepo.php プロジェクト: asmoyo/core
 public function __construct(CategoryModel $category)
 {
     parent::__construct($category);
     $this->category = $category;
 }
コード例 #2
0
ファイル: PageRepo.php プロジェクト: asmoyo/core
 public function __construct(PageModel $page)
 {
     parent::__construct($page);
     $this->page = $page;
 }
コード例 #3
0
ファイル: PostRepo.php プロジェクト: asmoyo/core
 public function __construct(PostModel $post)
 {
     parent::__construct($post);
     $this->post = $post;
 }