fulldecent/cameralife

View on GitHub
sources/Models/Database.php

Summary

Maintainability
C
1 day
Test Coverage

Method setupTables has 137 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public static function setupTables()
    {
        empty(self::$pdoConnection) && self::connect();
        $prefix = self::$prefix;

Severity: Major
Found in sources/Models/Database.php - About 5 hrs to fix

    File Database.php has 295 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    namespace CameraLife\Models;
    
    /**
     * PDO wrapper implementation of the database class
    Severity: Minor
    Found in sources/Models/Database.php - About 3 hrs to fix

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

          public static function setupTables()
          {
              empty(self::$pdoConnection) && self::connect();
              $prefix = self::$prefix;
      
      
      Severity: Minor
      Found in sources/Models/Database.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 select has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

          public static function select($table, $selection = '*', $condition = '1', $extra = '', $joins = '', $bind = array())
          {
              empty(self::$pdoConnection) && self::connect();
              if (!$condition) {
                  $condition = '1';
      Severity: Minor
      Found in sources/Models/Database.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

      Method select has 6 arguments (exceeds 4 allowed). Consider refactoring.
      Open

          public static function select($table, $selection = '*', $condition = '1', $extra = '', $joins = '', $bind = array())
      Severity: Minor
      Found in sources/Models/Database.php - About 45 mins to fix

        Method selectOne has 6 arguments (exceeds 4 allowed). Consider refactoring.
        Open

            public static function selectOne($table, $selection = '*', $condition = '1', $extra = '', $joins = '', $bind = array())
        Severity: Minor
        Found in sources/Models/Database.php - About 45 mins to fix

          There are no issues that match your filters.

          Category
          Status