mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-29 16:44:44 +02:00
19 lines
423 B
PHP
19 lines
423 B
PHP
<?php
|
|
|
|
namespace App\Repositories\Eloquent;
|
|
|
|
use App\Contracts\Repository\PermissionRepositoryInterface;
|
|
|
|
class PermissionRepository extends EloquentRepository implements PermissionRepositoryInterface
|
|
{
|
|
/**
|
|
* Return the model backing this repository.
|
|
*
|
|
* @throws \Exception
|
|
*/
|
|
public function model(): string
|
|
{
|
|
throw new \Exception('This functionality is not implemented.');
|
|
}
|
|
}
|