core/modules/user/UserController.php

Summary

Maintainability
F
5 days
Test Coverage

beforeInvoke accesses the super-global variable $_GET.
Open

    public function beforeInvoke()
    {
        $adminAccess = false; //Ajde_Acl::validatePage('admin', '', '');
        if (
            (isset($_GET['_route']) && substr($_GET['_route'], 0, 5) == 'admin') ||
Severity: Minor
Found in core/modules/user/UserController.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

beforeInvoke accesses the super-global variable $_GET.
Open

    public function beforeInvoke()
    {
        $adminAccess = false; //Ajde_Acl::validatePage('admin', '', '');
        if (
            (isset($_GET['_route']) && substr($_GET['_route'], 0, 5) == 'admin') ||
Severity: Minor
Found in core/modules/user/UserController.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

logonHtml accesses the super-global variable $_SERVER.
Open

    public function logonHtml()
    {
        if (($user = $this->getLoggedInUser())) {
            if (($returnto = Ajde::app()->getRequest()->getParam('returnto', false))) {
                return $this->redirect($returnto);
Severity: Minor
Found in core/modules/user/UserController.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

beforeInvoke accesses the super-global variable $_GET.
Open

    public function beforeInvoke()
    {
        $adminAccess = false; //Ajde_Acl::validatePage('admin', '', '');
        if (
            (isset($_GET['_route']) && substr($_GET['_route'], 0, 5) == 'admin') ||
Severity: Minor
Found in core/modules/user/UserController.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

beforeInvoke accesses the super-global variable $_GET.
Open

    public function beforeInvoke()
    {
        $adminAccess = false; //Ajde_Acl::validatePage('admin', '', '');
        if (
            (isset($_GET['_route']) && substr($_GET['_route'], 0, 5) == 'admin') ||
Severity: Minor
Found in core/modules/user/UserController.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

Function registerJson has a Cognitive Complexity of 80 (exceeds 5 allowed). Consider refactoring.
Open

    public function registerJson()
    {
        $user = new UserModel();

        $returnto = Ajde::app()->getRequest()->getPostParam('returnto', false);
Severity: Minor
Found in core/modules/user/UserController.php - About 1 day to fix

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

Function settingsJson has a Cognitive Complexity of 54 (exceeds 5 allowed). Consider refactoring.
Open

    public function settingsJson()
    {
        $user = $this->getLoggedInUser();

        if (!$user) {
Severity: Minor
Found in core/modules/user/UserController.php - About 1 day to fix

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

File UserController.php has 451 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

class UserController extends Ajde_User_Controller
{
    protected $_allowedActions = [
Severity: Minor
Found in core/modules/user/UserController.php - About 6 hrs to fix

    Method registerJson has 114 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function registerJson()
        {
            $user = new UserModel();
    
            $returnto = Ajde::app()->getRequest()->getPostParam('returnto', false);
    Severity: Major
    Found in core/modules/user/UserController.php - About 4 hrs to fix

      The class UserController has 17 public methods. Consider refactoring UserController to keep number of public methods under 10.
      Open

      class UserController extends Ajde_User_Controller
      {
          protected $_allowedActions = [
              'forgot',
              'reset',
      Severity: Minor
      Found in core/modules/user/UserController.php by phpmd

      TooManyPublicMethods

      Since: 0.1

      A class with too many public methods is probably a good suspect for refactoring, in order to reduce its complexity and find a way to have more fine grained objects.

      By default it ignores methods starting with 'get' or 'set'.

      Example

      Source https://phpmd.org/rules/codesize.html#toomanypublicmethods

      The class UserController has an overall complexity of 76 which is very high. The configured complexity threshold is 50.
      Open

      class UserController extends Ajde_User_Controller
      {
          protected $_allowedActions = [
              'forgot',
              'reset',
      Severity: Minor
      Found in core/modules/user/UserController.php by phpmd

      Method settingsJson has 83 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function settingsJson()
          {
              $user = $this->getLoggedInUser();
      
              if (!$user) {
      Severity: Major
      Found in core/modules/user/UserController.php - About 3 hrs to fix

        Method resetJson has 36 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function resetJson()
            {
                $user = $this->getLoggedInUser();
        
                $password = Ajde::app()->getRequest()->getPostParam('password');
        Severity: Minor
        Found in core/modules/user/UserController.php - About 1 hr to fix

          Method forgotJson has 33 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function forgotJson()
              {
                  $user = new UserModel();
          
                  $ident = Ajde::app()->getRequest()->getPostParam('user');
          Severity: Minor
          Found in core/modules/user/UserController.php - About 1 hr to fix

            Function forgotJson has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
            Open

                public function forgotJson()
                {
                    $user = new UserModel();
            
                    $ident = Ajde::app()->getRequest()->getPostParam('user');
            Severity: Minor
            Found in core/modules/user/UserController.php - About 1 hr to fix

            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

            Function resetJson has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
            Open

                public function resetJson()
                {
                    $user = $this->getLoggedInUser();
            
                    $password = Ajde::app()->getRequest()->getPostParam('password');
            Severity: Minor
            Found in core/modules/user/UserController.php - About 55 mins to fix

            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

            Function logonJson has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

                public function logonJson()
                {
                    $user = new UserModel();
            
                    $username = Ajde::app()->getRequest()->getPostParam($user->usernameField);
            Severity: Minor
            Found in core/modules/user/UserController.php - About 25 mins to fix

            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

            The method registerJson() has 126 lines of code. Current threshold is set to 100. Avoid really long methods.
            Open

                public function registerJson()
                {
                    $user = new UserModel();
            
                    $returnto = Ajde::app()->getRequest()->getPostParam('returnto', false);
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            The method registerJson() has a Cyclomatic Complexity of 17. The configured cyclomatic complexity threshold is 10.
            Open

                public function registerJson()
                {
                    $user = new UserModel();
            
                    $returnto = Ajde::app()->getRequest()->getPostParam('returnto', false);
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            CyclomaticComplexity

            Since: 0.1

            Complexity is determined by the number of decision points in a method plus one for the method entry. The decision points are 'if', 'while', 'for', and 'case labels'. Generally, 1-4 is low complexity, 5-7 indicates moderate complexity, 8-10 is high complexity, and 11+ is very high complexity.

            Example

            // Cyclomatic Complexity = 11
            class Foo {
            1   public function example() {
            2       if ($a == $b) {
            3           if ($a1 == $b1) {
                            fiddle();
            4           } elseif ($a2 == $b2) {
                            fiddle();
                        } else {
                            fiddle();
                        }
            5       } elseif ($c == $d) {
            6           while ($c == $d) {
                            fiddle();
                        }
            7        } elseif ($e == $f) {
            8           for ($n = 0; $n < $h; $n++) {
                            fiddle();
                        }
                    } else {
                        switch ($z) {
            9               case 1:
                                fiddle();
                                break;
            10              case 2:
                                fiddle();
                                break;
            11              case 3:
                                fiddle();
                                break;
                            default:
                                fiddle();
                                break;
                        }
                    }
                }
            }

            Source https://phpmd.org/rules/codesize.html#cyclomaticcomplexity

            The method settingsJson() has a Cyclomatic Complexity of 12. The configured cyclomatic complexity threshold is 10.
            Open

                public function settingsJson()
                {
                    $user = $this->getLoggedInUser();
            
                    if (!$user) {
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            CyclomaticComplexity

            Since: 0.1

            Complexity is determined by the number of decision points in a method plus one for the method entry. The decision points are 'if', 'while', 'for', and 'case labels'. Generally, 1-4 is low complexity, 5-7 indicates moderate complexity, 8-10 is high complexity, and 11+ is very high complexity.

            Example

            // Cyclomatic Complexity = 11
            class Foo {
            1   public function example() {
            2       if ($a == $b) {
            3           if ($a1 == $b1) {
                            fiddle();
            4           } elseif ($a2 == $b2) {
                            fiddle();
                        } else {
                            fiddle();
                        }
            5       } elseif ($c == $d) {
            6           while ($c == $d) {
                            fiddle();
                        }
            7        } elseif ($e == $f) {
            8           for ($n = 0; $n < $h; $n++) {
                            fiddle();
                        }
                    } else {
                        switch ($z) {
            9               case 1:
                                fiddle();
                                break;
            10              case 2:
                                fiddle();
                                break;
            11              case 3:
                                fiddle();
                                break;
                            default:
                                fiddle();
                                break;
                        }
                    }
                }
            }

            Source https://phpmd.org/rules/codesize.html#cyclomaticcomplexity

            Missing class import via use statement (line '190', column '25').
            Open

                        $user = new UserModel();
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            MissingImport

            Since: 2.7.0

            Importing all external classes in a file through use statements makes them clearly visible.

            Example

            function make() {
                return new \stdClass();
            }

            Source http://phpmd.org/rules/cleancode.html#MissingImport

            Missing class import via use statement (line '481', column '64').
            Open

                                                                $sso = new SsoModel();
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            MissingImport

            Since: 2.7.0

            Importing all external classes in a file through use statements makes them clearly visible.

            Example

            function make() {
                return new \stdClass();
            }

            Source http://phpmd.org/rules/cleancode.html#MissingImport

            Missing class import via use statement (line '409', column '27').
            Open

                    $shadowUser = new UserModel();
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            MissingImport

            Since: 2.7.0

            Importing all external classes in a file through use statements makes them clearly visible.

            Example

            function make() {
                return new \stdClass();
            }

            Source http://phpmd.org/rules/cleancode.html#MissingImport

            Missing class import via use statement (line '205', column '21').
            Open

                    $user = new UserModel();
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            MissingImport

            Since: 2.7.0

            Importing all external classes in a file through use statements makes them clearly visible.

            Example

            function make() {
                return new \stdClass();
            }

            Source http://phpmd.org/rules/cleancode.html#MissingImport

            Missing class import via use statement (line '221', column '28').
            Open

                        $session = new Ajde_Session('user');
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            MissingImport

            Since: 2.7.0

            Importing all external classes in a file through use statements makes them clearly visible.

            Example

            function make() {
                return new \stdClass();
            }

            Source http://phpmd.org/rules/cleancode.html#MissingImport

            Missing class import via use statement (line '318', column '27').
            Open

                    $shadowUser = new UserModel();
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            MissingImport

            Since: 2.7.0

            Importing all external classes in a file through use statements makes them clearly visible.

            Example

            function make() {
                return new \stdClass();
            }

            Source http://phpmd.org/rules/cleancode.html#MissingImport

            Missing class import via use statement (line '244', column '21').
            Open

                    $user = new UserModel();
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            MissingImport

            Since: 2.7.0

            Importing all external classes in a file through use statements makes them clearly visible.

            Example

            function make() {
                return new \stdClass();
            }

            Source http://phpmd.org/rules/cleancode.html#MissingImport

            Missing class import via use statement (line '396', column '21').
            Open

                    $user = new UserModel();
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            MissingImport

            Since: 2.7.0

            Importing all external classes in a file through use statements makes them clearly visible.

            Example

            function make() {
                return new \stdClass();
            }

            Source http://phpmd.org/rules/cleancode.html#MissingImport

            Missing class import via use statement (line '24', column '55').
            Open

                        Ajde::app()->getDocument()->setLayout(new Ajde_Layout(config('layout.admin')));
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            MissingImport

            Since: 2.7.0

            Importing all external classes in a file through use statements makes them clearly visible.

            Example

            function make() {
                return new \stdClass();
            }

            Source http://phpmd.org/rules/cleancode.html#MissingImport

            Missing class import via use statement (line '382', column '21').
            Open

                    $user = new UserModel();
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            MissingImport

            Since: 2.7.0

            Importing all external classes in a file through use statements makes them clearly visible.

            Example

            function make() {
                return new \stdClass();
            }

            Source http://phpmd.org/rules/cleancode.html#MissingImport

            Missing class import via use statement (line '268', column '28').
            Open

                        $session = new Ajde_Session('user');
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            MissingImport

            Since: 2.7.0

            Importing all external classes in a file through use statements makes them clearly visible.

            Example

            function make() {
                return new \stdClass();
            }

            Source http://phpmd.org/rules/cleancode.html#MissingImport

            Missing class import via use statement (line '296', column '21').
            Open

                    $user = new UserModel();
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            MissingImport

            Since: 2.7.0

            Importing all external classes in a file through use statements makes them clearly visible.

            Example

            function make() {
                return new \stdClass();
            }

            Source http://phpmd.org/rules/cleancode.html#MissingImport

            The method logonJson uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
            Open

                    } else {
                        $session = new Ajde_Session('user');
                        $attempts = $session->has('attempts') ? $session->get('attempts') : 1;
                        $session->set('attempts', $attempts + 1);
                        if ($attempts % 4 === 0) {
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            ElseExpression

            Since: 1.4.0

            An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

            Example

            class Foo
            {
                public function bar($flag)
                {
                    if ($flag) {
                        // one branch
                    } else {
                        // another branch
                    }
                }
            }

            Source https://phpmd.org/rules/cleancode.html#elseexpression

            The method registerJson uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
            Open

                                } else {
                                    if (empty($email)) {
                                        $return = [
                                            'success' => false,
                                            'message' => trans('Please provide an e-mail address'),
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            ElseExpression

            Since: 1.4.0

            An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

            Example

            class Foo
            {
                public function bar($flag)
                {
                    if ($flag) {
                        // one branch
                    } else {
                        // another branch
                    }
                }
            }

            Source https://phpmd.org/rules/cleancode.html#elseexpression

            The method registerJson uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
            Open

                                                } else {
                                                    if ($provider && !$provider->getData()) {
                                                        $return = [
                                                            'success' => false,
                                                            'message' => trans('Something went wrong with fetching your credentials from an external service'),
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            ElseExpression

            Since: 1.4.0

            An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

            Example

            class Foo
            {
                public function bar($flag)
                {
                    if ($flag) {
                        // one branch
                    } else {
                        // another branch
                    }
                }
            }

            Source https://phpmd.org/rules/cleancode.html#elseexpression

            The method settingsJson uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
            Open

                                } else {
                                    if (Ajde_Component_String::validEmail($email) === false) {
                                        $return = [
                                            'success' => false,
                                            'message' => trans('Please provide a valid e-mail address'),
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            ElseExpression

            Since: 1.4.0

            An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

            Example

            class Foo
            {
                public function bar($flag)
                {
                    if ($flag) {
                        // one branch
                    } else {
                        // another branch
                    }
                }
            }

            Source https://phpmd.org/rules/cleancode.html#elseexpression

            Avoid assigning values to variables in if clauses and the like (line '361', column '14').
            Open

                public function logoff()
                {
                    if (($user = $this->getLoggedInUser())) {
                        $user->logout();
                    }
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            IfStatementAssignment

            Since: 2.7.0

            Assignments in if clauses and the like are considered a code smell. Assignments in PHP return the right operand as their result. In many cases, this is an expected behavior, but can lead to many difficult to spot bugs, especially when the right operand could result in zero, null or an empty string and the like.

            Example

            class Foo
            {
                public function bar($flag)
                {
                    if ($foo = 'bar') { // possible typo
                        // ...
                    }
                    if ($baz = 0) { // always false
                        // ...
                    }
                }
            }

            Source http://phpmd.org/rules/cleancode.html#ifstatementassignment

            The method registerJson uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
            Open

                                    } else {
                                        if (Ajde_Component_String::validEmail($email) === false) {
                                            $return = [
                                                'success' => false,
                                                'message' => trans('Please provide a valid e-mail address'),
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            ElseExpression

            Since: 1.4.0

            An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

            Example

            class Foo
            {
                public function bar($flag)
                {
                    if ($flag) {
                        // one branch
                    } else {
                        // another branch
                    }
                }
            }

            Source https://phpmd.org/rules/cleancode.html#elseexpression

            The method registerJson uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
            Open

                                                    } else {
                                                        $user->set('email', $email);
                                                        $user->set('fullname', $fullname);
                                                        if ($user->add($username, $password)) {
                                                            if ($provider) {
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            ElseExpression

            Since: 1.4.0

            An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

            Example

            class Foo
            {
                public function bar($flag)
                {
                    if ($flag) {
                        // one branch
                    } else {
                        // another branch
                    }
                }
            }

            Source https://phpmd.org/rules/cleancode.html#elseexpression

            The method resetJson uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
            Open

                        } else {
                            $hash = $user->createHash($password);
                            $user->set($user->passwordField, $hash);
                            $user->set('secret', $user->generateSecret());
                            $user->set('reset_hash', '');
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            ElseExpression

            Since: 1.4.0

            An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

            Example

            class Foo
            {
                public function bar($flag)
                {
                    if ($flag) {
                        // one branch
                    } else {
                        // another branch
                    }
                }
            }

            Source https://phpmd.org/rules/cleancode.html#elseexpression

            Avoid using static access to class 'Ajde_Session_Flash' in method 'resetJson'.
            Open

                                Ajde_Session_Flash::alert(sprintf(trans('Welcome %s, you are now logged in'), $user->getFullname()));
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            StaticAccess

            Since: 1.4.0

            Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

            Example

            class Foo
            {
                public function bar()
                {
                    Bar::baz();
                }
            }

            Source https://phpmd.org/rules/cleancode.html#staticaccess

            The method registerJson uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
            Open

                    } else {
                        if (!$provider && empty($password)) {
                            $return = [
                                'success' => false,
                                'message' => trans('Please provide a password'),
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            ElseExpression

            Since: 1.4.0

            An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

            Example

            class Foo
            {
                public function bar($flag)
                {
                    if ($flag) {
                        // one branch
                    } else {
                        // another branch
                    }
                }
            }

            Source https://phpmd.org/rules/cleancode.html#elseexpression

            The method settingsJson uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
            Open

                    } else {
                        if (!$user->canChangeUsernameTo($username)) {
                            $return = [
                                'success' => false,
                                'message' => trans(ucfirst($user->usernameField).' already exist'),
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            ElseExpression

            Since: 1.4.0

            An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

            Example

            class Foo
            {
                public function bar($flag)
                {
                    if ($flag) {
                        // one branch
                    } else {
                        // another branch
                    }
                }
            }

            Source https://phpmd.org/rules/cleancode.html#elseexpression

            The method settingsJson uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
            Open

                                            } else {
                                                $user->set($user->usernameField, $username);
                                                $user->set('email', $email);
                                                $user->set('fullname', $fullname);
                                                if ($password) {
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            ElseExpression

            Since: 1.4.0

            An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

            Example

            class Foo
            {
                public function bar($flag)
                {
                    if ($flag) {
                        // one branch
                    } else {
                        // another branch
                    }
                }
            }

            Source https://phpmd.org/rules/cleancode.html#elseexpression

            The method logoff uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
            Open

                    } else {
                        $this->redirect(Ajde_Http_Response::REDIRECT_REFFERER);
                    }
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            ElseExpression

            Since: 1.4.0

            An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

            Example

            class Foo
            {
                public function bar($flag)
                {
                    if ($flag) {
                        // one branch
                    } else {
                        // another branch
                    }
                }
            }

            Source https://phpmd.org/rules/cleancode.html#elseexpression

            Avoid assigning values to variables in if clauses and the like (line '372', column '14').
            Open

                public function switchUser()
                {
                    if (($user = $this->getLoggedInUser())) {
                        $user->logout();
                        $this->_user = null;
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            IfStatementAssignment

            Since: 2.7.0

            Assignments in if clauses and the like are considered a code smell. Assignments in PHP return the right operand as their result. In many cases, this is an expected behavior, but can lead to many difficult to spot bugs, especially when the right operand could result in zero, null or an empty string and the like.

            Example

            class Foo
            {
                public function bar($flag)
                {
                    if ($foo = 'bar') { // possible typo
                        // ...
                    }
                    if ($baz = 0) { // always false
                        // ...
                    }
                }
            }

            Source http://phpmd.org/rules/cleancode.html#ifstatementassignment

            The method forgotJson uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
            Open

                    } else {
                        $session = new Ajde_Session('user');
                        $attempts = $session->has('attempts') ? $session->get('attempts') : 1;
                        $session->set('attempts', $attempts + 1);
                        if ($attempts % 4 === 0) {
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            ElseExpression

            Since: 1.4.0

            An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

            Example

            class Foo
            {
                public function bar($flag)
                {
                    if ($flag) {
                        // one branch
                    } else {
                        // another branch
                    }
                }
            }

            Source https://phpmd.org/rules/cleancode.html#elseexpression

            The method resetJson uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
            Open

                            } else {
                                $return = [
                                    'success' => false,
                                    'message' => trans('Something went wrong'),
                                ];
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            ElseExpression

            Since: 1.4.0

            An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

            Example

            class Foo
            {
                public function bar($flag)
                {
                    if ($flag) {
                        // one branch
                    } else {
                        // another branch
                    }
                }
            }

            Source https://phpmd.org/rules/cleancode.html#elseexpression

            Avoid using static access to class 'Ajde_Session_Flash' in method 'registerJson'.
            Open

                                                            Ajde_Session_Flash::alert(sprintf(trans('Welcome %s, you are now logged in'),
                                                                $fullname));
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            StaticAccess

            Since: 1.4.0

            Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

            Example

            class Foo
            {
                public function bar()
                {
                    Bar::baz();
                }
            }

            Source https://phpmd.org/rules/cleancode.html#staticaccess

            Avoid using static access to class 'Ajde_Component_String' in method 'settingsJson'.
            Open

                                    if (Ajde_Component_String::validEmail($email) === false) {
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            StaticAccess

            Since: 1.4.0

            Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

            Example

            class Foo
            {
                public function bar()
                {
                    Bar::baz();
                }
            }

            Source https://phpmd.org/rules/cleancode.html#staticaccess

            Avoid assigning values to variables in if clauses and the like (line '182', column '18').
            Open

                public function logonHtml()
                {
                    if (($user = $this->getLoggedInUser())) {
                        if (($returnto = Ajde::app()->getRequest()->getParam('returnto', false))) {
                            return $this->redirect($returnto);
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            IfStatementAssignment

            Since: 2.7.0

            Assignments in if clauses and the like are considered a code smell. Assignments in PHP return the right operand as their result. In many cases, this is an expected behavior, but can lead to many difficult to spot bugs, especially when the right operand could result in zero, null or an empty string and the like.

            Example

            class Foo
            {
                public function bar($flag)
                {
                    if ($foo = 'bar') { // possible typo
                        // ...
                    }
                    if ($baz = 0) { // always false
                        // ...
                    }
                }
            }

            Source http://phpmd.org/rules/cleancode.html#ifstatementassignment

            Avoid using static access to class 'Ajde_Session_Flash' in method 'forgotJson'.
            Open

                            Ajde_Session_Flash::alert(trans('A password reset link is sent to your e-mail address.'));
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            StaticAccess

            Since: 1.4.0

            Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

            Example

            class Foo
            {
                public function bar()
                {
                    Bar::baz();
                }
            }

            Source https://phpmd.org/rules/cleancode.html#staticaccess

            Avoid assigning values to variables in if clauses and the like (line '358', column '14').
            Open

                public function logoff()
                {
                    if (($user = $this->getLoggedInUser())) {
                        $user->logout();
                    }
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            IfStatementAssignment

            Since: 2.7.0

            Assignments in if clauses and the like are considered a code smell. Assignments in PHP return the right operand as their result. In many cases, this is an expected behavior, but can lead to many difficult to spot bugs, especially when the right operand could result in zero, null or an empty string and the like.

            Example

            class Foo
            {
                public function bar($flag)
                {
                    if ($foo = 'bar') { // possible typo
                        // ...
                    }
                    if ($baz = 0) { // always false
                        // ...
                    }
                }
            }

            Source http://phpmd.org/rules/cleancode.html#ifstatementassignment

            The method settingsJson uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
            Open

                                    } else {
                                        if (!$user->canChangeEmailTo($email)) {
                                            $return = [
                                                'success' => false,
                                                'message' => trans('A user with this e-mail address already exist'),
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            ElseExpression

            Since: 1.4.0

            An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

            Example

            class Foo
            {
                public function bar($flag)
                {
                    if ($flag) {
                        // one branch
                    } else {
                        // another branch
                    }
                }
            }

            Source https://phpmd.org/rules/cleancode.html#elseexpression

            The method resetJson uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
            Open

                    } else {
                        if ($password !== $passwordCheck) {
                            $return = [
                                'success' => false,
                                'message' => trans('Passwords do not match'),
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            ElseExpression

            Since: 1.4.0

            An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

            Example

            class Foo
            {
                public function bar($flag)
                {
                    if ($flag) {
                        // one branch
                    } else {
                        // another branch
                    }
                }
            }

            Source https://phpmd.org/rules/cleancode.html#elseexpression

            The method settingsJson uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
            Open

                                                } else {
                                                    $return = [
                                                        'success' => false,
                                                        'message' => trans('Something went wrong'),
                                                    ];
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            ElseExpression

            Since: 1.4.0

            An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

            Example

            class Foo
            {
                public function bar($flag)
                {
                    if ($flag) {
                        // one branch
                    } else {
                        // another branch
                    }
                }
            }

            Source https://phpmd.org/rules/cleancode.html#elseexpression

            Avoid using static access to class 'Ajde_Http_Request' in method 'logoff'.
            Open

                    } elseif (substr_count(Ajde_Http_Request::getRefferer(), 'logoff') > 0 || !Ajde_Http_Request::getRefferer()) {
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            StaticAccess

            Since: 1.4.0

            Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

            Example

            class Foo
            {
                public function bar()
                {
                    Bar::baz();
                }
            }

            Source https://phpmd.org/rules/cleancode.html#staticaccess

            Avoid using static access to class 'Ajde_Http_Request' in method 'logoff'.
            Open

                    } elseif (substr_count(Ajde_Http_Request::getRefferer(), 'logoff') > 0 || !Ajde_Http_Request::getRefferer()) {
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            StaticAccess

            Since: 1.4.0

            Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

            Example

            class Foo
            {
                public function bar()
                {
                    Bar::baz();
                }
            }

            Source https://phpmd.org/rules/cleancode.html#staticaccess

            The method registerJson uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
            Open

                                                        } else {
                                                            $return = [
                                                                'success' => false,
                                                                'message' => trans('Something went wrong'),
                                                            ];
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            ElseExpression

            Since: 1.4.0

            An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

            Example

            class Foo
            {
                public function bar($flag)
                {
                    if ($flag) {
                        // one branch
                    } else {
                        // another branch
                    }
                }
            }

            Source https://phpmd.org/rules/cleancode.html#elseexpression

            The method logonHtml uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
            Open

                    } else {
                        $user = new UserModel();
                        $this->setAction('logon');
                        //            $message = Ajde::app()->getRequest()->getParam('message', 'Please login');
                        $this->getView()->assign('message', '');
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            ElseExpression

            Since: 1.4.0

            An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

            Example

            class Foo
            {
                public function bar($flag)
                {
                    if ($flag) {
                        // one branch
                    } else {
                        // another branch
                    }
                }
            }

            Source https://phpmd.org/rules/cleancode.html#elseexpression

            The method registerJson uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
            Open

                        } else {
                            if ($shadowUser->loadByField($shadowUser->usernameField, $username)) {
                                $return = [
                                    'success' => false,
                                    'message' => trans(ucfirst($user->usernameField).' already exist'),
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            ElseExpression

            Since: 1.4.0

            An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

            Example

            class Foo
            {
                public function bar($flag)
                {
                    if ($flag) {
                        // one branch
                    } else {
                        // another branch
                    }
                }
            }

            Source https://phpmd.org/rules/cleancode.html#elseexpression

            The method registerJson uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
            Open

                            } else {
                                if (!$provider && $password !== $passwordCheck) {
                                    $return = [
                                        'success' => false,
                                        'message' => trans('Passwords do not match'),
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            ElseExpression

            Since: 1.4.0

            An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

            Example

            class Foo
            {
                public function bar($flag)
                {
                    if ($flag) {
                        // one branch
                    } else {
                        // another branch
                    }
                }
            }

            Source https://phpmd.org/rules/cleancode.html#elseexpression

            Avoid using static access to class 'Ajde_Component_String' in method 'registerJson'.
            Open

                                        if (Ajde_Component_String::validEmail($email) === false) {
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            StaticAccess

            Since: 1.4.0

            Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

            Example

            class Foo
            {
                public function bar()
                {
                    Bar::baz();
                }
            }

            Source https://phpmd.org/rules/cleancode.html#staticaccess

            Avoid using static access to class 'Ajde_Session_Flash' in method 'logonJson'.
            Open

                        Ajde_Session_Flash::alert(sprintf(trans('Welcome back %s'), $user->getFullname()));
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            StaticAccess

            Since: 1.4.0

            Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

            Example

            class Foo
            {
                public function bar()
                {
                    Bar::baz();
                }
            }

            Source https://phpmd.org/rules/cleancode.html#staticaccess

            The method forgotJson uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
            Open

                        } else {
                            $return = [
                                'success' => false,
                                'message' => trans('We could not reset your password. Please contact our technical staff.'),
                            ];
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            ElseExpression

            Since: 1.4.0

            An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

            Example

            class Foo
            {
                public function bar($flag)
                {
                    if ($flag) {
                        // one branch
                    } else {
                        // another branch
                    }
                }
            }

            Source https://phpmd.org/rules/cleancode.html#elseexpression

            Avoid assigning values to variables in if clauses and the like (line '181', column '14').
            Open

                public function logonHtml()
                {
                    if (($user = $this->getLoggedInUser())) {
                        if (($returnto = Ajde::app()->getRequest()->getParam('returnto', false))) {
                            return $this->redirect($returnto);
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            IfStatementAssignment

            Since: 2.7.0

            Assignments in if clauses and the like are considered a code smell. Assignments in PHP return the right operand as their result. In many cases, this is an expected behavior, but can lead to many difficult to spot bugs, especially when the right operand could result in zero, null or an empty string and the like.

            Example

            class Foo
            {
                public function bar($flag)
                {
                    if ($foo = 'bar') { // possible typo
                        // ...
                    }
                    if ($baz = 0) { // always false
                        // ...
                    }
                }
            }

            Source http://phpmd.org/rules/cleancode.html#ifstatementassignment

            The method registerJson uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
            Open

                                            } else {
                                                if (empty($fullname)) {
                                                    $return = [
                                                        'success' => false,
                                                        'message' => trans('Please provide a full name'),
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            ElseExpression

            Since: 1.4.0

            An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

            Example

            class Foo
            {
                public function bar($flag)
                {
                    if ($flag) {
                        // one branch
                    } else {
                        // another branch
                    }
                }
            }

            Source https://phpmd.org/rules/cleancode.html#elseexpression

            The method settingsJson uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
            Open

                        } else {
                            if ($password && $password !== $passwordCheck) {
                                $return = [
                                    'success' => false,
                                    'message' => trans('Passwords do not match'),
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            ElseExpression

            Since: 1.4.0

            An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

            Example

            class Foo
            {
                public function bar($flag)
                {
                    if ($flag) {
                        // one branch
                    } else {
                        // another branch
                    }
                }
            }

            Source https://phpmd.org/rules/cleancode.html#elseexpression

            The method settingsJson uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
            Open

                            } else {
                                if (empty($email)) {
                                    $return = [
                                        'success' => false,
                                        'message' => trans('Please provide an e-mail address'),
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            ElseExpression

            Since: 1.4.0

            An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

            Example

            class Foo
            {
                public function bar($flag)
                {
                    if ($flag) {
                        // one branch
                    } else {
                        // another branch
                    }
                }
            }

            Source https://phpmd.org/rules/cleancode.html#elseexpression

            Avoid using static access to class 'Ajde_Http_Response' in method 'registerJson'.
            Open

                            Ajde_Http_Response::redirectNotFound();
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            StaticAccess

            Since: 1.4.0

            Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

            Example

            class Foo
            {
                public function bar()
                {
                    Bar::baz();
                }
            }

            Source https://phpmd.org/rules/cleancode.html#staticaccess

            The method registerJson uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
            Open

                                        } else {
                                            if ($shadowUser->loadByField('email', $email)) {
                                                $return = [
                                                    'success' => false,
                                                    'message' => trans('A user with this e-mail address already exist'),
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            ElseExpression

            Since: 1.4.0

            An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

            Example

            class Foo
            {
                public function bar($flag)
                {
                    if ($flag) {
                        // one branch
                    } else {
                        // another branch
                    }
                }
            }

            Source https://phpmd.org/rules/cleancode.html#elseexpression

            The method settingsJson uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
            Open

                                        } else {
                                            if (empty($fullname)) {
                                                $return = [
                                                    'success' => false,
                                                    'message' => trans('Please provide a full name'),
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            ElseExpression

            Since: 1.4.0

            An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

            Example

            class Foo
            {
                public function bar($flag)
                {
                    if ($flag) {
                        // one branch
                    } else {
                        // another branch
                    }
                }
            }

            Source https://phpmd.org/rules/cleancode.html#elseexpression

            Avoid using static access to class 'Ajde_Session_Flash' in method 'settingsJson'.
            Open

                                                    Ajde_Session_Flash::alert(trans('Your settings have been saved'));
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            StaticAccess

            Since: 1.4.0

            Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

            Example

            class Foo
            {
                public function bar()
                {
                    Bar::baz();
                }
            }

            Source https://phpmd.org/rules/cleancode.html#staticaccess

            Avoid unused local variables such as '$shadowUser'.
            Open

                    $shadowUser = new UserModel();
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            UnusedLocalVariable

            Since: 0.2

            Detects when a local variable is declared and/or assigned, but not used.

            Example

            class Foo {
                public function doSomething()
                {
                    $i = 5; // Unused
                }
            }

            Source https://phpmd.org/rules/unusedcode.html#unusedlocalvariable

            Similar blocks of code found in 2 locations. Consider refactoring.
            Open

                    if (false !== $user->loadByCredentials($username, $password)) {
                        $user->login();
                        Ajde_Session_Flash::alert(sprintf(trans('Welcome back %s'), $user->getFullname()));
                        if ($rememberme === true) {
                            $user->storeCookie($this->includeDomain);
            Severity: Major
            Found in core/modules/user/UserController.php and 1 other location - About 1 hr to fix
            core/modules/user/UserController.php on lines 257..278

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 109.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            Similar blocks of code found in 2 locations. Consider refactoring.
            Open

                    if (false !== $found) {
                        if ($user->resetUser()) {
                            Ajde_Session_Flash::alert(trans('A password reset link is sent to your e-mail address.'));
                            $return = ['success' => true];
                        } else {
            Severity: Major
            Found in core/modules/user/UserController.php and 1 other location - About 1 hr to fix
            core/modules/user/UserController.php on lines 213..231

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 109.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            The property $_logonRoute is not named in camelCase.
            Open

            class UserController extends Ajde_User_Controller
            {
                protected $_allowedActions = [
                    'forgot',
                    'reset',
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            CamelCasePropertyName

            Since: 0.2

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

            Example

            class ClassName {
                protected $property_name;
            }

            Source

            The property $_allowedActions is not named in camelCase.
            Open

            class UserController extends Ajde_User_Controller
            {
                protected $_allowedActions = [
                    'forgot',
                    'reset',
            Severity: Minor
            Found in core/modules/user/UserController.php by phpmd

            CamelCasePropertyName

            Since: 0.2

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

            Example

            class ClassName {
                protected $property_name;
            }

            Source

            There are no issues that match your filters.

            Category
            Status