symphonycms/symphony-2

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

Summary

Maintainability
B
6 hrs
Test Coverage

DateTimeObj has 22 functions (exceeds 20 allowed). Consider refactoring.
Open

class DateTimeObj
{
    /**
     * Holds the various settings for the formats that the `DateTimeObj` should
     * use when parsing input dates.
Severity: Minor
Found in symphony/lib/core/class.datetimeobj.php - About 2 hrs to fix

    Function parse has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
    Open

        public static function parse($string)
        {
    
            // Current date and time
            if ($string == 'now' || empty($string)) {
    Severity: Minor
    Found in symphony/lib/core/class.datetimeobj.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 setSettings has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

        public static function setSettings(array $settings = array())
        {
            // Date format
            if (isset($settings['date_format'])) {
                self::$settings['date_format'] = $settings['date_format'];
    Severity: Minor
    Found in symphony/lib/core/class.datetimeobj.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 validate has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

        public static function validate($string)
        {
            try {
                if (is_numeric($string) && (int)$string == $string) {
                    $date = new DateTime('@' . $string);
    Severity: Minor
    Found in symphony/lib/core/class.datetimeobj.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

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

        public static function getTimezonesSelectOptions($selected = null)
        {
            $zones = self::getZones();
            $groups = array();
    
    
    Severity: Minor
    Found in symphony/lib/core/class.datetimeobj.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