misc_pterodactyl-panel/app/Repositories/Eloquent/PermissionRepository.php
2023-02-23 12:30:16 -07:00

18 lines
439 B
PHP

<?php
namespace Pterodactyl\Repositories\Eloquent;
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.');
}
}