misc_pterodactyl-panel/app/Repositories/Eloquent/PermissionRepository.php

19 lines
439 B
PHP
Raw Normal View History

<?php
2016-12-07 22:46:38 +00:00
2017-08-23 21:34:11 -05:00
namespace Pterodactyl\Repositories\Eloquent;
2017-08-23 21:34:11 -05:00
use Pterodactyl\Contracts\Repository\PermissionRepositoryInterface;
2017-08-23 21:34:11 -05:00
class PermissionRepository extends EloquentRepository implements PermissionRepositoryInterface
{
2017-03-19 19:36:50 -04:00
/**
* Return the model backing this repository.
*
* @throws \Exception
2017-03-19 19:36:50 -04:00
*/
public function model(): string
{
2022-11-29 10:53:59 -07:00
throw new \Exception('This functionality is not implemented.');
}
}