Файл: gapps/vendor/cartalyst/sentinel/src/Roles/IlluminateRoleRepository.php
Строк: 57
<?php
/**
* Part of the Sentinel package.
*
* NOTICE OF LICENSE
*
* Licensed under the 3-clause BSD License.
*
* This source file is subject to the 3-clause BSD License that is
* bundled with this package in the LICENSE file.
*
* @package Sentinel
* @version 2.0.15
* @author Cartalyst LLC
* @license BSD License (3-clause)
* @copyright (c) 2011-2017, Cartalyst LLC
* @link http://cartalyst.com
*/
namespace CartalystSentinelRoles;
use CartalystSupportTraitsRepositoryTrait;
class IlluminateRoleRepository implements RoleRepositoryInterface
{
use RepositoryTrait;
/**
* The Eloquent role model name.
*
* @var string
*/
protected $model = 'CartalystSentinelRolesEloquentRole';
/**
* Create a new Illuminate role repository.
*
* @param string $model
* @return void
*/
public function __construct($model = null)
{
if (isset($model)) {
$this->model = $model;
}
}
/**
* {@inheritDoc}
*/
public function findById($id)
{
return $this
->createModel()
->newQuery()
->find($id);
}
/**
* {@inheritDoc}
*/
public function findBySlug($slug)
{
return $this
->createModel()
->newQuery()
->where('slug', $slug)
->first();
}
/**
* {@inheritDoc}
*/
public function findByName($name)
{
return $this
->createModel()
->newQuery()
->where('name', $name)
->first();
}
}