Created
January 15, 2018 20:48
-
-
Save brunokunace/25dae4bba521504bc7e90bf3ddab8888 to your computer and use it in GitHub Desktop.
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\Http\Repositories; | |
| use Illuminate\Database\Eloquent\Model as Eloquent; | |
| class CategoryRepository extends Repository | |
| { | |
| public function __construct(Eloquent $model) | |
| { | |
| parent::__construct($model); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment