Created
February 29, 2024 19:09
-
-
Save Mourishitz/89b08f147885f4c02db3f762458471f4 to your computer and use it in GitHub Desktop.
Stub file to be used as template on LaravelCore project
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\Api\Modules\{{ ModuleName }}\Interfaces; | |
| use App\Core\Interfaces\RepositoryInterface; | |
| use Illuminate\Support\Collection; | |
| interface UserRepositoryInterface extends RepositoryInterface | |
| { | |
| public function all(): Collection; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment