nafigator/Veles

View on GitHub
Auth/UsrAuth.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%

The variable $user_group is not named in camelCase.
Open

    public static function hasAccess($groups)
    {
        $user_group = static::getUser()->getGroup();

        return $groups === ($user_group & $groups);
Severity: Minor
Found in Auth/UsrAuth.php by phpmd

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $user_group is not named in camelCase.
Open

    public static function hasAccess($groups)
    {
        $user_group = static::getUser()->getGroup();

        return $groups === ($user_group & $groups);
Severity: Minor
Found in Auth/UsrAuth.php by phpmd

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

There are no issues that match your filters.

Category
Status