cbcf62086f
Co-authored-by: DaneEveritt <dane@daneeveritt.com>
19 lines
453 B
PHP
19 lines
453 B
PHP
<?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.');
|
|
}
|
|
}
|