Created
September 16, 2019 03:53
-
-
Save aungwinthant/3ee14b8ead3287fa32eaf3de890b78a2 to your computer and use it in GitHub Desktop.
Concrete for Category Repository
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Repositories; | |
use App\Models\Category; | |
class CategoryRepository extends Repository implements CategoryRepositoryInterface{ | |
public function __construct(Category $category) | |
{ | |
$this->model = $category; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment