mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 17:26:53 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			424 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			424 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Pterodactyl\Repositories\Eloquent;
 | |
| 
 | |
| use Pterodactyl\Models\Permission;
 | |
| use Pterodactyl\Contracts\Repository\PermissionRepositoryInterface;
 | |
| 
 | |
| class PermissionRepository extends EloquentRepository implements PermissionRepositoryInterface
 | |
| {
 | |
|     /**
 | |
|      * Return the model backing this repository.
 | |
|      *
 | |
|      * @return string
 | |
|      */
 | |
|     public function model()
 | |
|     {
 | |
|         return Permission::class;
 | |
|     }
 | |
| }
 | 
