Skip to content

Instantly share code, notes, and snippets.

@lfbn
Last active July 31, 2020 18:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lfbn/26a1148f2b2e1797d2ae66b5c992e532 to your computer and use it in GitHub Desktop.
Save lfbn/26a1148f2b2e1797d2ae66b5c992e532 to your computer and use it in GitHub Desktop.
QuoteRepositoryInterface.php #laravel #laravel_repositories
<?php
namespace App\Repositories;
/**
* Interface QuoteRepositoryInterface
* @package App\Repositories
*/
interface QuoteRepositoryInterface
{
public function all();
public function getAllQuotesNotUsedInMessages();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment