Last active
July 31, 2020 18:17
-
-
Save lfbn/26a1148f2b2e1797d2ae66b5c992e532 to your computer and use it in GitHub Desktop.
QuoteRepositoryInterface.php #laravel #laravel_repositories
This file contains 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; | |
/** | |
* 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