misc_pterodactyl-panel/app/Repositories/Eloquent/PermissionRepository.php
2021-01-23 12:33:34 -08:00

21 lines
474 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.
*
* @return string
*
* @throws \Exception
*/
public function model()
{
throw new Exception('This functionality is not implemented.');
}
}