core/Group/Common/ClassMap.php
Showing 12 of 12 total issues
Function searchClass
has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring. Open
Open
private function searchClass($fileDir, $data=[]) { if (is_dir(__ROOT__.$fileDir)) { $dir = opendir(__ROOT__.$fileDir);
- Read upRead up
Avoid unused local variables such as '$key'. Open
Open
foreach ($this->dir as $key => $value) {
- Read upRead up
- Exclude checks
Blank line found at start of control structure Open
Open
if ($fileName && isset($file[1]) && $file[1] =="php" && substr($fileName, -4) == "Impl") {
- Exclude checks
Blank line found at end of control structure Open
Open
- Exclude checks
Incorrect spacing between argument "$data" and equals sign; expected 1 but found 0 Open
Open
private function searchClass($fileDir, $data=[])
- Exclude checks
PHP keywords must be lowercase; expected "class" but found "Class" Open
Open
Class ClassMap
- Exclude checks
Scope keyword "private" must be followed by a single space Open
Open
private function searchClass($fileDir, $data=[])
- Exclude checks
Scope keyword "public" must be followed by a single space Open
Open
public function doSearch()
- Exclude checks
Incorrect spacing between default value and equals sign for argument "$data"; expected 1 but found 0 Open
Open
private function searchClass($fileDir, $data=[])
- Exclude checks
Expected 1 space after closing parenthesis; found 13 Open
Open
while (($file = readdir($dir)) !== false)
- Exclude checks
Expected 1 space after closing brace; 0 found Open
Open
}else if ($fileName) {
- Exclude checks
Usage of ELSE IF is discouraged; use ELSEIF instead Open
Open
}else if ($fileName) {
- Exclude checks