Showing 10 of 12 total issues
Method run
has 77 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function run()
{
Model::unguard();
$groups = Sentinel::getRoleRepository();
Method run
has 62 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function run()
{
$this->role->create(array(
'name' => 'Admin',
'permissions' => [
Method run
has 60 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function run()
{
Model::unguard();
// Create an Admin group
Function updateAndSyncRoles
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
Open
public function updateAndSyncRoles($userId, $data, $roles)
{
$user = Sentry::findUserById($userId);
$this->checkForNewPassword($data);
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method extendWith
has 26 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function extendWith(Menu $menu)
{
$menu->group(trans('workshop::workshop.title'), function (Group $group) {
$group->item(trans('user::users.title.users'), function (Item $item) {
Function login
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
Open
public function login(array $credentials, $remember = false)
{
try {
Sentry::authenticate($credentials, $remember);
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Avoid too many return
statements within this method. Open
Open
return 'User is suspended.';
Avoid too many return
statements within this method. Open
Open
return 'User was not found.';
Avoid too many return
statements within this method. Open
Open
return 'User is not activated.';
Avoid too many return
statements within this method. Open
Open
return 'User is banned.';