App\Repositories\PostRepository::__construct PHP Method

__construct() public method

BlogRepository constructor.
public __construct ( Post $post, Category $category, Tag $tag )
$post app\models\Post
$category app\models\Category
$tag app\models\Tag
    public function __construct(Post $post, Category $category, Tag $tag)
    {
        $this->model = $post;
        $this->category = $category;
        $this->tag = $tag;
    }