for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace A17\Twill\Repositories;
use A17\Twill\Models\Role;
use A17\Twill\Repositories\Behaviors\HandleRolePermissions;
class RoleRepository extends ModuleRepository
{
use HandleRolePermissions;
A17\Twill\Repositories\B...s\HandleRolePermissions
A17\Twill\Repositories\RoleRepository
$name
$users
$in_everyone_group
public function __construct(Role $model)
$this->model = $model;
$model
A17\Twill\Models\Role
A17\Twill\Models\Model
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..
}
public function filter($query, array $scopes = [])
$this->searchIn($query, $scopes, 'search', ['name']);
return parent::filter($query, $scopes);