GemsTracker/gemstracker-library

View on GitHub
classes/Gems/Tracker/Token.php

Summary

Maintainability
F
1 wk
Test Coverage
F
39%

File Token.php has 1186 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

/**
 *
 * @package    Gems
Severity: Major
Found in classes/Gems/Tracker/Token.php - About 3 days to fix

    Gems_Tracker_Token has 105 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class Gems_Tracker_Token extends \Gems_Registry_TargetAbstract
    {
        use TranslateableTrait;
    
        const COMPLETION_NOCHANGE = 0;
    Severity: Major
    Found in classes/Gems/Tracker/Token.php - About 2 days to fix

      Function checkTokenCompletion has a Cognitive Complexity of 44 (exceeds 5 allowed). Consider refactoring.
      Open

          public function checkTokenCompletion($userId)
          {
              $result = self::COMPLETION_NOCHANGE;
      
              // Some defaults
      Severity: Minor
      Found in classes/Gems/Tracker/Token.php - About 6 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

      Function toResponseDatabase has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
      Open

          protected function toResponseDatabase($userId)
          {
              $responseDb = $this->project->getResponseDatabase();
      
              // WHY EXPLANATION!!
      Severity: Minor
      Found in classes/Gems/Tracker/Token.php - About 3 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

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

      class Gems_Tracker_Token extends \Gems_Registry_TargetAbstract
      {
          use TranslateableTrait;
      
          const COMPLETION_NOCHANGE = 0;
      Severity: Minor
      Found in classes/Gems/Tracker/Token.php by phpmd

      The class Gems_Tracker_Token has 16 public methods. Consider refactoring Gems_Tracker_Token to keep number of public methods under 10.
      Open

      class Gems_Tracker_Token extends \Gems_Registry_TargetAbstract
      {
          use TranslateableTrait;
      
          const COMPLETION_NOCHANGE = 0;
      Severity: Minor
      Found in classes/Gems/Tracker/Token.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

      Method toResponseDatabase has 71 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          protected function toResponseDatabase($userId)
          {
              $responseDb = $this->project->getResponseDatabase();
      
              // WHY EXPLANATION!!
      Severity: Major
      Found in classes/Gems/Tracker/Token.php - About 2 hrs to fix

        Method checkTokenCompletion has 62 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function checkTokenCompletion($userId)
            {
                $result = self::COMPLETION_NOCHANGE;
        
                // Some defaults
        Severity: Major
        Found in classes/Gems/Tracker/Token.php - About 2 hrs to fix

          Function handleAfterCompletion has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
          Open

              public function handleAfterCompletion()
              {
                  $survey = $this->getSurvey();
                  $completedEvent = $survey->getSurveyCompletedEvent();
          
          
          Severity: Minor
          Found in classes/Gems/Tracker/Token.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 handleAfterCompletion has 48 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function handleAfterCompletion()
              {
                  $survey = $this->getSurvey();
                  $completedEvent = $survey->getSurveyCompletedEvent();
          
          
          Severity: Minor
          Found in classes/Gems/Tracker/Token.php - About 1 hr to fix

            Function setValidFrom has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
            Open

                public function setValidFrom($validFrom, $validUntil, $userId)
                {
                    $mailSentDate = $this->getMailSentDate();
                    if (! $mailSentDate instanceof \MUtil_Date) {
                        $mailSentDate = \MUtil_Date::ifDate($mailSentDate, [\Gems_Tracker::DB_DATE_FORMAT, \Gems_Tracker::DB_DATETIME_FORMAT]);
            Severity: Minor
            Found in classes/Gems/Tracker/Token.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 handleBeforeAnswering has 42 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                public function handleBeforeAnswering()
                {
                    $survey = $this->getSurvey();
                    $beforeAnswerEvent  = $survey->getSurveyBeforeAnsweringEvent();
            
            
            Severity: Minor
            Found in classes/Gems/Tracker/Token.php - About 1 hr to fix

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

                  public function setValidFrom($validFrom, $validUntil, $userId)
                  {
                      $mailSentDate = $this->getMailSentDate();
                      if (! $mailSentDate instanceof \MUtil_Date) {
                          $mailSentDate = \MUtil_Date::ifDate($mailSentDate, [\Gems_Tracker::DB_DATE_FORMAT, \Gems_Tracker::DB_DATETIME_FORMAT]);
              Severity: Minor
              Found in classes/Gems/Tracker/Token.php - About 1 hr to fix

                The class Gems_Tracker_Token has 25 fields. Consider redesigning Gems_Tracker_Token to keep the number of fields under 15.
                Open

                class Gems_Tracker_Token extends \Gems_Registry_TargetAbstract
                {
                    use TranslateableTrait;
                
                    const COMPLETION_NOCHANGE = 0;
                Severity: Minor
                Found in classes/Gems/Tracker/Token.php by phpmd

                TooManyFields

                Since: 0.1

                Classes that have too many fields could be redesigned to have fewer fields, possibly through some nested object grouping of some of the information. For example, a class with city/state/zip fields could instead have one Address field.

                Example

                class Person {
                   protected $one;
                   private $two;
                   private $three;
                   [... many more fields ...]
                }

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

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

                    public function handleBeforeAnswering()
                    {
                        $survey = $this->getSurvey();
                        $beforeAnswerEvent  = $survey->getSurveyBeforeAnsweringEvent();
                
                
                Severity: Minor
                Found in classes/Gems/Tracker/Token.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

                The class Gems_Tracker_Token has 100 public methods and attributes. Consider reducing the number of public items to less than 45.
                Open

                class Gems_Tracker_Token extends \Gems_Registry_TargetAbstract
                {
                    use TranslateableTrait;
                
                    const COMPLETION_NOCHANGE = 0;
                Severity: Minor
                Found in classes/Gems/Tracker/Token.php by phpmd

                ExcessivePublicCount

                Since: 0.1

                A large number of public methods and attributes declared in a class can indicate the class may need to be broken up as increased effort will be required to thoroughly test it.

                Example

                public class Foo {
                    public $value;
                    public $something;
                    public $var;
                    // [... more more public attributes ...]
                
                    public function doWork() {}
                    public function doMoreWork() {}
                    public function doWorkAgain() {}
                    // [... more more public methods ...]
                }

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

                Method createReplacement has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    public function createReplacement($newComment, $userId, array $otherValues = array())
                    {
                        $values['gto_id_respondent_track'] = $this->_gemsData['gto_id_respondent_track'];
                        $values['gto_id_round']            = $this->_gemsData['gto_id_round'];
                        $values['gto_id_respondent']       = $this->_gemsData['gto_id_respondent'];
                Severity: Minor
                Found in classes/Gems/Tracker/Token.php - About 1 hr to fix

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

                      public function setReceptionCode($code, $comment, $userId)
                      {
                          // Make sure it is a \Gems_Util_ReceptionCode object
                          if (! $code instanceof \Gems_Util_ReceptionCode) {
                              $code = $this->util->getReceptionCode($code);
                  Severity: Minor
                  Found in classes/Gems/Tracker/Token.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 checkRegistryRequestsAnswers has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                  Open

                      public function checkRegistryRequestsAnswers()
                      {
                          if ($this->_gemsData) {
                              if ($this->currentUser instanceof \Gems_User_User) {
                                  $this->_gemsData = $this->currentUser->applyGroupMask($this->_gemsData);
                  Severity: Minor
                  Found in classes/Gems/Tracker/Token.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

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

                      public function getAnswerSnippetNames()
                      {
                          if (! $this->exists) {
                              return ['Token\\TokenNotFoundSnippet'];
                          }
                  Severity: Minor
                  Found in classes/Gems/Tracker/Token.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

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

                      public function getUrl($language, $userId)
                      {
                          $survey = $this->getSurvey();
                  
                          $survey->copyTokenToSource($this, $language);
                  Severity: Minor
                  Found in classes/Gems/Tracker/Token.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 checkTokenCompletion() has an NPath complexity of 872. The configured NPath complexity threshold is 200.
                  Open

                      public function checkTokenCompletion($userId)
                      {
                          $result = self::COMPLETION_NOCHANGE;
                  
                          // Some defaults
                  Severity: Minor
                  Found in classes/Gems/Tracker/Token.php by phpmd

                  NPathComplexity

                  Since: 0.1

                  The NPath complexity of a method is the number of acyclic execution paths through that method. A threshold of 200 is generally considered the point where measures should be taken to reduce complexity.

                  Example

                  class Foo {
                      function bar() {
                          // lots of complicated code
                      }
                  }

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

                  The method handleAfterCompletion() has an NPath complexity of 576. The configured NPath complexity threshold is 200.
                  Open

                      public function handleAfterCompletion()
                      {
                          $survey = $this->getSurvey();
                          $completedEvent = $survey->getSurveyCompletedEvent();
                  
                  
                  Severity: Minor
                  Found in classes/Gems/Tracker/Token.php by phpmd

                  NPathComplexity

                  Since: 0.1

                  The NPath complexity of a method is the number of acyclic execution paths through that method. A threshold of 200 is generally considered the point where measures should be taken to reduce complexity.

                  Example

                  class Foo {
                      function bar() {
                          // lots of complicated code
                      }
                  }

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

                  The method toResponseDatabase() has an NPath complexity of 288. The configured NPath complexity threshold is 200.
                  Open

                      protected function toResponseDatabase($userId)
                      {
                          $responseDb = $this->project->getResponseDatabase();
                  
                          // WHY EXPLANATION!!
                  Severity: Minor
                  Found in classes/Gems/Tracker/Token.php by phpmd

                  NPathComplexity

                  Since: 0.1

                  The NPath complexity of a method is the number of acyclic execution paths through that method. A threshold of 200 is generally considered the point where measures should be taken to reduce complexity.

                  Example

                  class Foo {
                      function bar() {
                          // lots of complicated code
                      }
                  }

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

                  The class Gems_Tracker_Token has 2222 lines of code. Current threshold is 1000. Avoid really long classes.
                  Open

                  class Gems_Tracker_Token extends \Gems_Registry_TargetAbstract
                  {
                      use TranslateableTrait;
                  
                      const COMPLETION_NOCHANGE = 0;
                  Severity: Minor
                  Found in classes/Gems/Tracker/Token.php by phpmd

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

                      public function checkTokenCompletion($userId)
                      {
                          $result = self::COMPLETION_NOCHANGE;
                  
                          // Some defaults
                  Severity: Minor
                  Found in classes/Gems/Tracker/Token.php by phpmd

                  The method handleBeforeAnswering() has an NPath complexity of 240. The configured NPath complexity threshold is 200.
                  Open

                      public function handleBeforeAnswering()
                      {
                          $survey = $this->getSurvey();
                          $beforeAnswerEvent  = $survey->getSurveyBeforeAnsweringEvent();
                  
                  
                  Severity: Minor
                  Found in classes/Gems/Tracker/Token.php by phpmd

                  NPathComplexity

                  Since: 0.1

                  The NPath complexity of a method is the number of acyclic execution paths through that method. A threshold of 200 is generally considered the point where measures should be taken to reduce complexity.

                  Example

                  class Foo {
                      function bar() {
                          // lots of complicated code
                      }
                  }

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

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

                      public function applyToMenuSource(\Gems_Menu_ParameterSource $source)
                      {
                          $source->setTokenId($this->_tokenId);
                          if (!$this->exists) return $this;
                  
                  
                  Severity: Minor
                  Found in classes/Gems/Tracker/Token.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 checkTokenCompletion() has a Cyclomatic Complexity of 15. The configured cyclomatic complexity threshold is 10.
                  Open

                      public function checkTokenCompletion($userId)
                      {
                          $result = self::COMPLETION_NOCHANGE;
                  
                          // Some defaults
                  Severity: Minor
                  Found in classes/Gems/Tracker/Token.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 toResponseDatabase() has a Cyclomatic Complexity of 13. The configured cyclomatic complexity threshold is 10.
                  Open

                      protected function toResponseDatabase($userId)
                      {
                          $responseDb = $this->project->getResponseDatabase();
                  
                          // WHY EXPLANATION!!
                  Severity: Minor
                  Found in classes/Gems/Tracker/Token.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 handleAfterCompletion() has a Cyclomatic Complexity of 13. The configured cyclomatic complexity threshold is 10.
                  Open

                      public function handleAfterCompletion()
                      {
                          $survey = $this->getSurvey();
                          $completedEvent = $survey->getSurveyCompletedEvent();
                  
                  
                  Severity: Minor
                  Found in classes/Gems/Tracker/Token.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 setValidFrom() has a Cyclomatic Complexity of 11. The configured cyclomatic complexity threshold is 10.
                  Open

                      public function setValidFrom($validFrom, $validUntil, $userId)
                      {
                          $mailSentDate = $this->getMailSentDate();
                          if (! $mailSentDate instanceof \MUtil_Date) {
                              $mailSentDate = \MUtil_Date::ifDate($mailSentDate, [\Gems_Tracker::DB_DATE_FORMAT, \Gems_Tracker::DB_DATETIME_FORMAT]);
                  Severity: Minor
                  Found in classes/Gems/Tracker/Token.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 handleBeforeAnswering() has a Cyclomatic Complexity of 12. The configured cyclomatic complexity threshold is 10.
                  Open

                      public function handleBeforeAnswering()
                      {
                          $survey = $this->getSurvey();
                          $beforeAnswerEvent  = $survey->getSurveyBeforeAnsweringEvent();
                  
                  
                  Severity: Minor
                  Found in classes/Gems/Tracker/Token.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 class Gems_Tracker_Token has a coupling between objects value of 38. Consider to reduce the number of dependencies under 13.
                  Open

                  class Gems_Tracker_Token extends \Gems_Registry_TargetAbstract
                  {
                      use TranslateableTrait;
                  
                      const COMPLETION_NOCHANGE = 0;
                  Severity: Minor
                  Found in classes/Gems/Tracker/Token.php by phpmd

                  CouplingBetweenObjects

                  Since: 1.1.0

                  A class with too many dependencies has negative impacts on several quality aspects of a class. This includes quality criteria like stability, maintainability and understandability

                  Example

                  class Foo {
                      /**
                       * @var \foo\bar\X
                       */
                      private $x = null;
                  
                      /**
                       * @var \foo\bar\Y
                       */
                      private $y = null;
                  
                      /**
                       * @var \foo\bar\Z
                       */
                      private $z = null;
                  
                      public function setFoo(\Foo $foo) {}
                      public function setBar(\Bar $bar) {}
                      public function setBaz(\Baz $baz) {}
                  
                      /**
                       * @return \SplObjectStorage
                       * @throws \OutOfRangeException
                       * @throws \InvalidArgumentException
                       * @throws \ErrorException
                       */
                      public function process(\Iterator $it) {}
                  
                      // ...
                  }

                  Source https://phpmd.org/rules/design.html#couplingbetweenobjects

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

                      protected function _ensureRespondentData()
                      {
                          if (! isset($this->_gemsData['grs_id_user'], $this->_gemsData['gr2o_id_user'], $this->_gemsData['gco_code'])) {
                              $sql = "SELECT *
                                  FROM gems__respondents INNER JOIN
                  Severity: Major
                  Found in classes/Gems/Tracker/Token.php and 1 other location - About 2 hrs to fix
                  classes/Gems/Tracker/RespondentTrack.php on lines 211..230

                  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 134.

                  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

                      public function getPreviousToken()
                      {
                          if (null === $this->_previousToken) {
                              $tokenSelect = $this->tracker->getTokenSelect();
                              $tokenSelect
                  Severity: Major
                  Found in classes/Gems/Tracker/Token.php and 1 other location - About 1 hr to fix
                  classes/Gems/Tracker/Token.php on lines 954..971

                  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 104.

                  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

                      public function getNextToken()
                      {
                          if (null === $this->_nextToken) {
                              $tokenSelect = $this->tracker->getTokenSelect();
                              $tokenSelect
                  Severity: Major
                  Found in classes/Gems/Tracker/Token.php and 1 other location - About 1 hr to fix
                  classes/Gems/Tracker/Token.php on lines 1082..1099

                  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 104.

                  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

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

                          if (! $this->_gemsData['gto_in_source']) {
                              $values['gto_start_time'] = new \MUtil_Db_Expr_CurrentTimestamp();
                              $values['gto_in_source']  = 1;
                  
                              $oldTokenId = $this->getCopiedFrom();
                  Severity: Minor
                  Found in classes/Gems/Tracker/Token.php and 1 other location - About 35 mins to fix
                  classes/Gems/Tracker/Mock/TokenReadonly.php on lines 174..185

                  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 92.

                  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

                  Avoid excessively long variable names like $staticResultFieldLength. Keep variable name length under 20.
                  Open

                      protected static $staticResultFieldLength = null;
                  Severity: Minor
                  Found in classes/Gems/Tracker/Token.php by phpmd

                  LongVariable

                  Since: 0.2

                  Detects when a field, formal or local variable is declared with a long name.

                  Example

                  class Something {
                      protected $reallyLongIntName = -3; // VIOLATION - Field
                      public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
                          $otherReallyLongName = -5; // VIOLATION - Local
                          for ($interestingIntIndex = 0; // VIOLATION - For
                               $interestingIntIndex < 10;
                               $interestingIntIndex++ ) {
                          }
                      }
                  }

                  Source https://phpmd.org/rules/naming.html#longvariable

                  Avoid variables with short names like $db. Configured minimum length is 3.
                  Open

                      protected $db;
                  Severity: Minor
                  Found in classes/Gems/Tracker/Token.php by phpmd

                  ShortVariable

                  Since: 0.2

                  Detects when a field, local, or parameter has a very short name.

                  Example

                  class Something {
                      private $q = 15; // VIOLATION - Field
                      public static function main( array $as ) { // VIOLATION - Formal
                          $r = 20 + $this->q; // VIOLATION - Local
                          for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                              $r += $this->q;
                          }
                      }
                  }

                  Source https://phpmd.org/rules/naming.html#shortvariable

                  There are no issues that match your filters.

                  Category
                  Status