Skip to content

Instantly share code, notes, and snippets.

@jsdecena
Created March 14, 2018 01:43
Show Gist options
  • Save jsdecena/da72155b317732321e7699312ae8e74c to your computer and use it in GitHub Desktop.
Save jsdecena/da72155b317732321e7699312ae8e74c to your computer and use it in GitHub Desktop.
<?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