Remove api permission repository

This commit is contained in:
Lance Pioch 2024-03-16 19:22:52 -04:00
parent 60c32cdb81
commit a496be67b8
3 changed files with 0 additions and 32 deletions

View File

@ -1,7 +0,0 @@
<?php
namespace App\Contracts\Repository;
interface ApiPermissionRepositoryInterface extends RepositoryInterface
{
}

View File

@ -1,7 +0,0 @@
<?php
namespace App\Contracts\Repository;
interface PermissionRepositoryInterface extends RepositoryInterface
{
}

View File

@ -1,18 +0,0 @@
<?php
namespace App\Repositories\Eloquent;
use App\Contracts\Repository\PermissionRepositoryInterface;
class PermissionRepository extends EloquentRepository implements PermissionRepositoryInterface
{
/**
* Return the model backing this repository.
*
* @throws \Exception
*/
public function model(): string
{
throw new \Exception('This functionality is not implemented.');
}
}