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

21 lines
467 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;
use Exception;
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.
*
* @return string
* @throws \Exception
2017-03-19 23:36:50 +00:00
*/
2017-08-24 02:34:11 +00:00
public function model()
{
throw new Exception('This functionality is not implemented.');
}
}