misc_pterodactyl-panel/app/Repositories/Eloquent/PermissionRepository.php
Matthew Penner cbcf62086f
Upgrade to Laravel 9 (#4413)
Co-authored-by: DaneEveritt <dane@daneeveritt.com>
2022-10-14 10:59:20 -06:00

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.');
}
}