Created
March 14, 2018 01:43
-
-
Save jsdecena/da72155b317732321e7699312ae8e74c 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\Articles\Repositories\Interfaces; | |
use App\Base\BaseRepositoryInterface; | |
interface ArticleRepositoryInterface extends BaseRepositoryInterface | |
{ | |
public function create(array $attributes); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment