jandjerry/tinyfw

View on GitHub

Showing 4 of 13 total issues

Function processRouting has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
Open

    private function processRouting()
    {
        //For nginx or cgi applications
        if (!$this->getVariable('_contr_')) {
            $route = $this->getVariable('_route_');
Severity: Minor
Found in src/jerry/TinyFw/Input.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

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

    private function debug()
    {
        if (!empty($this->errorCallbackFunction)) {
            $error = array("Error" => $this->error);
            if (!empty($this->sql)) {
Severity: Minor
Found in src/jerry/TinyFw/DB/MySQLPDO.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

Avoid deeply nested control flow statements.
Open

                        if (isset($tmp[$i])) {
                            $this->get['_params_'][] = $tmp[$i];
                        }
Severity: Major
Found in src/jerry/TinyFw/Input.php - About 45 mins to fix

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

        private function filter($table, $info)
        {
            $driver = $this->getAttribute(\PDO::ATTR_DRIVER_NAME);
            if ($driver == 'sqlite') {
                $sql = "PRAGMA table_info('" . $table . "');";
    Severity: Minor
    Found in src/jerry/TinyFw/DB/MySQLPDO.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

    Severity
    Category
    Status
    Source
    Language