3runoDesign/setRobot

View on GitHub
app/Lib/Utils.php

Summary

Maintainability
C
7 hrs
Test Coverage

Method get_error_message has 40 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function get_error_message($error_code) {
    switch($error_code) {
      case 'empty_username':
        return __('Email was blank', 'setrobot');
        case 'empty_password':
Severity: Minor
Found in app/Lib/Utils.php - About 1 hr to fix

    Avoid too many return statements within this method.
    Open

                return __( "You have successfully logged in!", 'setrobot' );
    Severity: Major
    Found in app/Lib/Utils.php - About 30 mins to fix

      Avoid too many return statements within this method.
      Open

                  return __( "The two passwords you entered don't match.", 'setrobot' );
      Severity: Major
      Found in app/Lib/Utils.php - About 30 mins to fix

        Avoid too many return statements within this method.
        Open

                  return __( 'An account exists with this email address.', 'setrobot' );
        Severity: Major
        Found in app/Lib/Utils.php - About 30 mins to fix

          Avoid too many return statements within this method.
          Open

                    return __( 'Registering new users is currently not allowed.', 'setrobot' );
          Severity: Major
          Found in app/Lib/Utils.php - About 30 mins to fix

            Avoid too many return statements within this method.
            Open

                        return __( 'There are no users registered with this email address.', 'setrobot' );
            Severity: Major
            Found in app/Lib/Utils.php - About 30 mins to fix

              Avoid too many return statements within this method.
              Open

                        return __( 'The email address you entered is not valid.', 'setrobot' );
              Severity: Major
              Found in app/Lib/Utils.php - About 30 mins to fix

                Avoid too many return statements within this method.
                Open

                            return __( 'The password reset link you used is not valid anymore.', 'setrobot' );
                Severity: Major
                Found in app/Lib/Utils.php - About 30 mins to fix

                  Avoid too many return statements within this method.
                  Open

                              return __( 'You need to enter your email address to continue.', 'setrobot' );
                  Severity: Major
                  Found in app/Lib/Utils.php - About 30 mins to fix

                    Avoid too many return statements within this method.
                    Open

                                return __( "Sorry, we don't accept empty passwords.", 'setrobot' );
                    Severity: Major
                    Found in app/Lib/Utils.php - About 30 mins to fix

                      Avoid too many return statements within this method.
                      Open

                          return __( 'An unknown error occurred. Please try again later.', 'setrobot' );
                      Severity: Major
                      Found in app/Lib/Utils.php - About 30 mins to fix

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

                            public function root_relative_url($input)
                            {
                                if (is_feed()) {
                                    return $input;
                                }
                        Severity: Minor
                        Found in app/Lib/Utils.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

                        There are no issues that match your filters.

                        Category
                        Status