alevikzs/mapper

View on GitHub

Showing 5 of 5 total issues

ClassField has 23 functions (exceeds 20 allowed). Consider refactoring.
Open

class ClassField {

    /**
     * @var string
     */
Severity: Minor
Found in src/ClassField.php - About 2 hrs to fix

    Function setupClassFieldFromAnnotation has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

        private function setupClassFieldFromAnnotation(ClassField $classField, ReflectionMethod $method): ClassParser {
            preg_match(self::PARAM_SETTER_PATTERN, $method->getDocComment(), $paramTypeAndVariable);
    
            if (isset($paramTypeAndVariable[1])) {
                $types = preg_split(
    Severity: Minor
    Found in src/ClassParser.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 buildValueToMap has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
    Open

        private function buildValueToMap($value, ClassField $classField) {
            $valueToMap = $value;
    
            if ($this->isArray($value)) {
                if ($this->isClass($value)) {
    Severity: Minor
    Found in src/Kernel.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 setType has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

        public function setType(string $type): ClassField {
            if ($type) {
                if (class_exists($type)) {
                    $this->setIsClass();
    
    
    Severity: Minor
    Found in src/ClassField.php - About 45 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

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

        public function map() {
            $classFields = $this->getClassParser()->getClassFields();
    
            foreach ($this->getData() as $field => $value) {
                $classField = $classFields->getClassField($field);
    Severity: Minor
    Found in src/Kernel.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