spotweb/spotweb

View on GitHub
lib/SpotTemplateHelper.php

Summary

Maintainability
F
3 days
Test Coverage

SpotTemplateHelper has 98 functions (exceeds 20 allowed). Consider refactoring.
Open

class SpotTemplateHelper
{
    protected $_settings;
    protected $_daoFactory;
    protected $_currentSession;
Severity: Major
Found in lib/SpotTemplateHelper.php - About 1 day to fix

    File SpotTemplateHelper.php has 738 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    
    // Utility class voor template functies, kan eventueel
    // door custom templates extended worden
    use function PHP81_BC\strftime;
    Severity: Major
    Found in lib/SpotTemplateHelper.php - About 1 day to fix

      Avoid too many return statements within this method.
      Open

                      case 'long':  return $this->long_date($stamp);
      Severity: Major
      Found in lib/SpotTemplateHelper.php - About 30 mins to fix

        Avoid too many return statements within this method.
        Open

                        default: return 'df format err';
        Severity: Major
        Found in lib/SpotTemplateHelper.php - About 30 mins to fix

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

              public function time_ago($date, $granularity = 2)
              {
                  $difference = time() - $date;
                  $periods = ['decade' => 315360000,
                      'year'           => 31536000,
          Severity: Minor
          Found in lib/SpotTemplateHelper.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