mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-23 01:22:30 +01:00
21 lines
467 B
PHP
21 lines
467 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.');
|
|
}
|
|
}
|