Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/app/Repositories/Eloquent/PermissionRepository.php
7460 views
1
<?php
2
3
namespace Pterodactyl\Repositories\Eloquent;
4
5
use Pterodactyl\Contracts\Repository\PermissionRepositoryInterface;
6
7
class PermissionRepository extends EloquentRepository implements PermissionRepositoryInterface
8
{
9
/**
10
* Return the model backing this repository.
11
*
12
* @throws \Exception
13
*/
14
public function model(): string
15
{
16
throw new \Exception('This functionality is not implemented.');
17
}
18
}
19
20