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

22 lines
474 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;
use Exception;
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.
*
* @return string
2021-01-23 12:33:34 -08:00
*
* @throws \Exception
2017-03-19 19:36:50 -04:00
*/
2017-08-23 21:34:11 -05:00
public function model()
{
throw new Exception('This functionality is not implemented.');
}
}