24 lines
426 B
PHP
24 lines
426 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Webkul\User\Repositories;
|
||
|
|
|
||
|
|
use Webkul\Core\Eloquent\Repository;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Role Reposotory
|
||
|
|
*
|
||
|
|
* @author Jitendra Singh <jitendra@webkul.com>
|
||
|
|
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
||
|
|
*/
|
||
|
|
class RoleRepository extends Repository
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* Specify Model class name
|
||
|
|
*
|
||
|
|
* @return mixed
|
||
|
|
*/
|
||
|
|
function model()
|
||
|
|
{
|
||
|
|
return 'Webkul\User\Models\Role';
|
||
|
|
}
|
||
|
|
}
|