Replace api permission repository

This commit is contained in:
Lance Pioch 2022-10-22 20:03:59 -04:00
parent 860b2d890b
commit 052c0d8fee
3 changed files with 0 additions and 33 deletions

View file

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

View file

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

View file

@ -1,19 +0,0 @@
<?php
namespace Pterodactyl\Repositories\Eloquent;
use Exception;
use Pterodactyl\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.');
}
}