fucongcong/framework

View on GitHub
core/Group/Common/ClassMap.php

Summary

Maintainability
A
2 hrs
Test Coverage

Showing 12 of 12 total issues

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

private function searchClass($fileDir, $data=[])
{
if (is_dir(__ROOT__.$fileDir)) {
$dir = opendir(__ROOT__.$fileDir);
 
 
Severity: Minor
Found in core/Group/Common/ClassMap.php - About 2 hrs to fix

Avoid unused local variables such as '$key'.
Open

foreach ($this->dir as $key => $value) {
Severity: Minor
Found in core/Group/Common/ClassMap.php by phpmd

Blank line found at start of control structure
Open

if ($fileName && isset($file[1]) && $file[1] =="php" && substr($fileName, -4) == "Impl") {

Blank line found at end of control structure
Open

 
 

Incorrect spacing between argument "$data" and equals sign; expected 1 but found 0
Open

private function searchClass($fileDir, $data=[])

PHP keywords must be lowercase; expected "class" but found "Class"
Open

Class ClassMap

Scope keyword "private" must be followed by a single space
Open

private function searchClass($fileDir, $data=[])

Scope keyword "public" must be followed by a single space
Open

public function doSearch()

Incorrect spacing between default value and equals sign for argument "$data"; expected 1 but found 0
Open

private function searchClass($fileDir, $data=[])

Expected 1 space after closing parenthesis; found 13
Open

while (($file = readdir($dir)) !== false)

Expected 1 space after closing brace; 0 found
Open

}else if ($fileName) {

Usage of ELSE IF is discouraged; use ELSEIF instead
Open

}else if ($fileName) {
Category
Status