src/PhpunitTestCase.php

Summary

Maintainability
C
1 day
Test Coverage

Showing 3 of 3 total issues

Function setDb has a Cognitive Complexity of 37 (exceeds 5 allowed). Consider refactoring.
Open

public function setDb($db_data, $import_data = true)
{
$this->tables = array_keys($db_data);
 
// create tables
Severity: Minor
Found in src/PhpunitTestCase.php - About 5 hrs to fix

Function getDb has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
Open

public function getDb($tables = null, bool $no_id = false)
{
$tables = $tables ?: $this->tables;
 
if (is_string($tables)) {
Severity: Minor
Found in src/PhpunitTestCase.php - About 1 hr to fix

Method setDb has 44 lines of code (exceeds 25 allowed). Consider refactoring.
Open

public function setDb($db_data, $import_data = true)
{
$this->tables = array_keys($db_data);
 
// create tables
Severity: Minor
Found in src/PhpunitTestCase.php - About 1 hr to fix
    Category
    Status