classes/yf_redirect.class.php

Summary

Maintainability
F
3 days
Test Coverage

Function _go has a Cognitive Complexity of 76 (exceeds 5 allowed). Consider refactoring.
Open

    public function _go($location, $rewrite = true, $redirect_type = 'hybrid', $text = '', $ttl = 3, $params = [])
    {
        if (is_array($location)) {
            $params += $location;
            $rewrite = isset($params['rewrite']) ? $params['rewrite'] : $rewrite;
Severity: Minor
Found in classes/yf_redirect.class.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

Method _go has 138 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function _go($location, $rewrite = true, $redirect_type = 'hybrid', $text = '', $ttl = 3, $params = [])
    {
        if (is_array($location)) {
            $params += $location;
            $rewrite = isset($params['rewrite']) ? $params['rewrite'] : $rewrite;
Severity: Major
Found in classes/yf_redirect.class.php - About 5 hrs to fix

    Function _loop_detected has a Cognitive Complexity of 28 (exceeds 5 allowed). Consider refactoring.
    Open

        public function _loop_detected($cur_url)
        {
            if ( ! $this->LOOP_DEFENCE) {
                return false;
            }
    Severity: Minor
    Found in classes/yf_redirect.class.php - About 4 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

    File yf_redirect.class.php has 314 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    
    /**
     * Redirects handler.
     *
    Severity: Minor
    Found in classes/yf_redirect.class.php - About 3 hrs to fix

      Method _loop_detected has 58 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function _loop_detected($cur_url)
          {
              if ( ! $this->LOOP_DEFENCE) {
                  return false;
              }
      Severity: Major
      Found in classes/yf_redirect.class.php - About 2 hrs to fix

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

            public function _save_log($params = [])
            {
                if ( ! $this->LOG_REDIRECTS) {
                    return false;
                }
        Severity: Minor
        Found in classes/yf_redirect.class.php - About 1 hr to fix

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

              public function _go($location, $rewrite = true, $redirect_type = 'hybrid', $text = '', $ttl = 3, $params = [])
          Severity: Minor
          Found in classes/yf_redirect.class.php - About 45 mins to fix

            There are no issues that match your filters.

            Category
            Status