Skip to content

Instantly share code, notes, and snippets.

@Mourishitz
Created February 29, 2024 19:09
Show Gist options
  • Select an option

  • Save Mourishitz/89b08f147885f4c02db3f762458471f4 to your computer and use it in GitHub Desktop.

Select an option

Save Mourishitz/89b08f147885f4c02db3f762458471f4 to your computer and use it in GitHub Desktop.
Stub file to be used as template on LaravelCore project
<?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