symphonycms/symphony-2

View on GitHub
symphony/lib/core/class.exceptionrenderer.php

Summary

Maintainability
C
1 day
Test Coverage

Method renderHtml has 61 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    protected static function renderHtml($e)
    {
        $heading = $e instanceof ErrorException ? ErrorHandler::$errorTypeStrings[$e->getSeverity()] : 'Fatal Error';
        $message = $e->getMessage() . ($e->getPrevious()
            ? '<br />' . __('Previous exception: ') . $e->getPrevious()->getMessage()
Severity: Major
Found in symphony/lib/core/class.exceptionrenderer.php - About 2 hrs to fix

    Method renderText has 55 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        protected static function renderText($e)
        {
            $message = $e->getMessage() . ($e->getPrevious()
                ? PHP_EOL . __('Previous exception: ') . $e->getPrevious()->getMessage()
                : '');
    Severity: Major
    Found in symphony/lib/core/class.exceptionrenderer.php - About 2 hrs to fix

      Function sendHeaders has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

          public static function sendHeaders($e)
          {
              if (!headers_sent()) {
                  cleanup_session_cookies();
      
      
      Severity: Minor
      Found in symphony/lib/core/class.exceptionrenderer.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

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

          protected static function renderHtml($e)
          {
              $heading = $e instanceof ErrorException ? ErrorHandler::$errorTypeStrings[$e->getSeverity()] : 'Fatal Error';
              $message = $e->getMessage() . ($e->getPrevious()
                  ? '<br />' . __('Previous exception: ') . $e->getPrevious()->getMessage()
      Severity: Minor
      Found in symphony/lib/core/class.exceptionrenderer.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 renderText has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          protected static function renderText($e)
          {
              $message = $e->getMessage() . ($e->getPrevious()
                  ? PHP_EOL . __('Previous exception: ') . $e->getPrevious()->getMessage()
                  : '');
      Severity: Minor
      Found in symphony/lib/core/class.exceptionrenderer.php - About 45 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 false;
      Severity: Major
      Found in symphony/lib/core/class.exceptionrenderer.php - About 30 mins to fix

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

            public static function getTemplate($name)
            {
                $format = '%s/%s.tpl';
        
                if (!ExceptionHandler::$enabled && php_sapi_name() !== 'cli') {
        Severity: Minor
        Found in symphony/lib/core/class.exceptionrenderer.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