Compare commits
1 Commits
release/v1
...
replace-pe
Author | SHA1 | Date |
---|---|---|
Lance Pioch | 052c0d8fee |
|
@ -1,7 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace Pterodactyl\Contracts\Repository;
|
|
||||||
|
|
||||||
interface ApiPermissionRepositoryInterface extends RepositoryInterface
|
|
||||||
{
|
|
||||||
}
|
|
|
@ -1,7 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace Pterodactyl\Contracts\Repository;
|
|
||||||
|
|
||||||
interface PermissionRepositoryInterface extends RepositoryInterface
|
|
||||||
{
|
|
||||||
}
|
|
|
@ -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.');
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue