3runoDesign/setRobot

View on GitHub

Showing 23 of 23 total issues

Function do_password_reset has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
Open

    public function do_password_reset() {
        if ( 'POST' == $_SERVER['REQUEST_METHOD'] ) {
            $rp_key = $_REQUEST['rp_key'];
            $rp_login = $_REQUEST['rp_login'];

Severity: Minor
Found in app/Lib/Lock.php - About 2 hrs 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

Method do_password_reset has 41 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function do_password_reset() {
        if ( 'POST' == $_SERVER['REQUEST_METHOD'] ) {
            $rp_key = $_REQUEST['rp_key'];
            $rp_login = $_REQUEST['rp_login'];

Severity: Minor
Found in app/Lib/Lock.php - About 1 hr to fix

    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

      Function do_register_user has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
      Open

          public function do_register_user() {
              if('POST' == $_SERVER['REQUEST_METHOD']) {
                  $redirect_url = $this->get_register_url;
                  if(!get_option('users_can_register')) {
                      $redirect_url = add_query_arg('register-errors', 'closed', $redirect_url);
      Severity: Minor
      Found in app/Lib/Lock.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

      Method updateHeaders has 32 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public static function updateHeaders(Event $event)
          {
              // @codingStandardsIgnoreStart
              $io = $event->getIO();
      
      
      Severity: Minor
      Found in app/Lib/PostCreateProject.php - About 1 hr to fix

        Function display_element has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
        Open

            public function display_element($element, &$children_elements, $max_depth, $depth = 0, $args, &$output)
            {
                $element->is_subitem = ((!empty($children_elements[$element->ID]) && (($depth + 1) < $max_depth || ($max_depth === 0))));
                if ($element->is_subitem) {
                    foreach ($children_elements[$element->ID] as $child) {
        Severity: Minor
        Found in app/Lib/NavWalker.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

        Method filter_templates has 29 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        function filter_templates($templates)
        {
            $paths = apply_filters('sage/filter_templates/paths', [
                'views',
                'resources/views'
        Severity: Minor
        Found in app/helpers.php - About 1 hr to fix

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

              public function redirect_to_custom_resetpass() {
                  if ( 'GET' == $_SERVER['REQUEST_METHOD'] ) {
                      // Verify key / login combo
                      $user = check_password_reset_key( $_REQUEST['key'], $_REQUEST['login'] );
                      if ( ! $user || is_wp_error( $user ) ) {
          Severity: Minor
          Found in app/Lib/Lock.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

          Method display_element has 6 arguments (exceeds 4 allowed). Consider refactoring.
          Open

              public function display_element($element, &$children_elements, $max_depth, $depth = 0, $args, &$output)
          Severity: Minor
          Found in app/Lib/NavWalker.php - About 45 mins to fix

            Function cssClasses has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
            Open

                public function cssClasses($classes, $item)
                {
                    $slug = sanitize_title($item->title);
                    // Fix core `active` behavior for custom post types
                    if ($this->cpt) {
            Severity: Minor
            Found in app/Lib/NavWalker.php - About 35 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

            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 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 __( "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 unknown error occurred. Please try again later.', '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 __( "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 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 __( 'The email address you entered is not valid.', 'setrobot' );
                              Severity: Major
                              Found in app/Lib/Utils.php - About 30 mins to fix
                                Severity
                                Category
                                Status
                                Source
                                Language