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-24 02:34:11 +00:00
namespace Pterodactyl\Repositories\Eloquent;
2017-08-24 02:34:11 +00:00
use Pterodactyl\Contracts\Repository\PermissionRepositoryInterface;
2017-08-24 02:34:11 +00:00
class PermissionRepository extends EloquentRepository implements PermissionRepositoryInterface
{
2017-03-19 23:36:50 +00:00
/**
* Return the model backing this repository.
*
* @throws \Exception
2017-03-19 23:36:50 +00:00
*/
public function model(): string
{
2022-11-29 17:53:59 +00:00
throw new \Exception('This functionality is not implemented.');
}
}