samizdam/PhamilyFramework

View on GitHub
src/Model/Persona.php

Summary

Maintainability
B
5 hrs
Test Coverage

The class Persona has an overall complexity of 53 which is very high. The configured complexity threshold is 50.
Open

class Persona implements PersonaInterface
{
    protected $id;

    protected $gender;
Severity: Minor
Found in src/Model/Persona.php by phpmd

Persona has 26 functions (exceeds 20 allowed). Consider refactoring.
Open

class Persona implements PersonaInterface
{
    protected $id;

    protected $gender;
Severity: Minor
Found in src/Model/Persona.php - About 3 hrs to fix

    Function setMother has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

        public function setMother(PersonaInterface $mother = null)
        {
            if ($mother instanceof PersonaInterface) {
                if ($this->parentsValidator->isValidMother($this, $mother)) {
                    $this->mother = $mother;
    Severity: Minor
    Found in src/Model/Persona.php - About 35 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 setFather has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

        public function setFather(PersonaInterface $father = null)
        {
            if ($father instanceof PersonaInterface) {
                if ($this->parentsValidator->isValidFather($this, $father)) {
                    $this->father = $father;
    Severity: Minor
    Found in src/Model/Persona.php - About 35 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

    The class Persona has a coupling between objects value of 16. Consider to reduce the number of dependencies under 13.
    Open

    class Persona implements PersonaInterface
    {
        protected $id;
    
        protected $gender;
    Severity: Minor
    Found in src/Model/Persona.php by phpmd

    CouplingBetweenObjects

    Since: 1.1.0

    A class with too many dependencies has negative impacts on several quality aspects of a class. This includes quality criteria like stability, maintainability and understandability

    Example

    class Foo {
        /**
         * @var \foo\bar\X
         */
        private $x = null;
    
        /**
         * @var \foo\bar\Y
         */
        private $y = null;
    
        /**
         * @var \foo\bar\Z
         */
        private $z = null;
    
        public function setFoo(\Foo $foo) {}
        public function setBar(\Bar $bar) {}
        public function setBaz(\Baz $baz) {}
    
        /**
         * @return \SplObjectStorage
         * @throws \OutOfRangeException
         * @throws \InvalidArgumentException
         * @throws \ErrorException
         */
        public function process(\Iterator $it) {}
    
        // ...
    }

    Source https://phpmd.org/rules/design.html#couplingbetweenobjects

    Missing class import via use statement (line '101', column '19').
    Open

            throw new \Exception('not implement now');
    Severity: Minor
    Found in src/Model/Persona.php by phpmd

    MissingImport

    Since: 2.7.0

    Importing all external classes in a file through use statements makes them clearly visible.

    Example

    function make() {
        return new \stdClass();
    }

    Source http://phpmd.org/rules/cleancode.html#MissingImport

    The method getDateOfBirth uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
    Open

                } else {
                    throw new LogicException("date of birth not set for this persona, and can't be formated");
                }
    Severity: Minor
    Found in src/Model/Persona.php by phpmd

    ElseExpression

    Since: 1.4.0

    An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

    Example

    class Foo
    {
        public function bar($flag)
        {
            if ($flag) {
                // one branch
            } else {
                // another branch
            }
        }
    }

    Source https://phpmd.org/rules/cleancode.html#elseexpression

    The method setFather uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
    Open

                } else {
                    $this->throwValidationErrors($this->parentsValidator);
                }
    Severity: Minor
    Found in src/Model/Persona.php by phpmd

    ElseExpression

    Since: 1.4.0

    An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

    Example

    class Foo
    {
        public function bar($flag)
        {
            if ($flag) {
                // one branch
            } else {
                // another branch
            }
        }
    }

    Source https://phpmd.org/rules/cleancode.html#elseexpression

    The method setMother uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
    Open

                } else {
                    $this->throwValidationErrors($this->parentsValidator);
                }
    Severity: Minor
    Found in src/Model/Persona.php by phpmd

    ElseExpression

    Since: 1.4.0

    An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

    Example

    class Foo
    {
        public function bar($flag)
        {
            if ($flag) {
                // one branch
            } else {
                // another branch
            }
        }
    }

    Source https://phpmd.org/rules/cleancode.html#elseexpression

    The method getDateOfDeath uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
    Open

                } else {
                    throw new LogicException("date of death not set for this persona, and can't be formated");
                }
    Severity: Minor
    Found in src/Model/Persona.php by phpmd

    ElseExpression

    Since: 1.4.0

    An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

    Example

    class Foo
    {
        public function bar($flag)
        {
            if ($flag) {
                // one branch
            } else {
                // another branch
            }
        }
    }

    Source https://phpmd.org/rules/cleancode.html#elseexpression

    Avoid unused parameters such as '$value'.
    Open

        public function setName($type, $value)
    Severity: Minor
    Found in src/Model/Persona.php by phpmd

    UnusedFormalParameter

    Since: 0.2

    Avoid passing parameters to methods or constructors and then not using those parameters.

    Example

    class Foo
    {
        private function bar($howdy)
        {
            // $howdy is not used
        }
    }

    Source https://phpmd.org/rules/unusedcode.html#unusedformalparameter

    Avoid unused parameters such as '$type'.
    Open

        public function setName($type, $value)
    Severity: Minor
    Found in src/Model/Persona.php by phpmd

    UnusedFormalParameter

    Since: 0.2

    Avoid passing parameters to methods or constructors and then not using those parameters.

    Example

    class Foo
    {
        private function bar($howdy)
        {
            // $howdy is not used
        }
    }

    Source https://phpmd.org/rules/unusedcode.html#unusedformalparameter

    TODO found
    Open

            // TODO move to validator
    Severity: Minor
    Found in src/Model/Persona.php by fixme

    TODO found
    Open

             * TODO may be change constructor for set validatorors, or use that without arguments,
    Severity: Minor
    Found in src/Model/Persona.php by fixme

    TODO found
    Open

            // TODO move to validator?
    Severity: Minor
    Found in src/Model/Persona.php by fixme

    TODO found
    Open

         * TODO valide with father / mother / child's DoB's.
    Severity: Minor
    Found in src/Model/Persona.php by fixme

    TODO found
    Open

                 * TODO may be use UnexpectedValueException for invalid gender?
    Severity: Minor
    Found in src/Model/Persona.php by fixme

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

        public function setMother(PersonaInterface $mother = null)
        {
            if ($mother instanceof PersonaInterface) {
                if ($this->parentsValidator->isValidMother($this, $mother)) {
                    $this->mother = $mother;
    Severity: Minor
    Found in src/Model/Persona.php and 1 other location - About 40 mins to fix
    src/Model/Persona.php on lines 194..206

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 94.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

        public function setFather(PersonaInterface $father = null)
        {
            if ($father instanceof PersonaInterface) {
                if ($this->parentsValidator->isValidFather($this, $father)) {
                    $this->father = $father;
    Severity: Minor
    Found in src/Model/Persona.php and 1 other location - About 40 mins to fix
    src/Model/Persona.php on lines 208..220

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 94.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Avoid variables with short names like $id. Configured minimum length is 3.
    Open

        protected $id;
    Severity: Minor
    Found in src/Model/Persona.php by phpmd

    ShortVariable

    Since: 0.2

    Detects when a field, local, or parameter has a very short name.

    Example

    class Something {
        private $q = 15; // VIOLATION - Field
        public static function main( array $as ) { // VIOLATION - Formal
            $r = 20 + $this->q; // VIOLATION - Local
            for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                $r += $this->q;
            }
        }
    }

    Source https://phpmd.org/rules/naming.html#shortvariable

    Line exceeds 120 characters; contains 123 characters
    Open

            } elseif ($gender !== self::GENDER_MALE && $gender !== self::GENDER_FEMALE && $gender !== self::GENDER_UNDEFINED) {
    Severity: Minor
    Found in src/Model/Persona.php by phpcodesniffer

    Line exceeds 120 characters; contains 132 characters
    Open

        public function __construct($gender = self::GENDER_UNDEFINED, array $names = [], Persona $father = null, Persona $mother = null)
    Severity: Minor
    Found in src/Model/Persona.php by phpcodesniffer

    Line exceeds 120 characters; contains 154 characters
    Open

                throw new InvalidArgumentException("Invalid gender value: {$gender}, possible values: ".self::MALE.', '.self::FEMALE.' or NULL if undefined');
    Severity: Minor
    Found in src/Model/Persona.php by phpcodesniffer

    There are no issues that match your filters.

    Category
    Status