mcred/phpred

View on GitHub

Showing 5 of 5 total issues

Function attachByMethod has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

    protected function attachByMethod(string $method)
    {
        if ($this->$method) {
            foreach ($this->$method as $attachModel) {
                $class = new \ReflectionClass($this);
Severity: Minor
Found in src/Models/Model.php - About 55 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 filterByFields has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

    protected function filterByFields(array $results, array $fields) : array
    {
        if (!$fields) {
            return $results;
        }
Severity: Minor
Found in src/Models/Model.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 validateUniqueFields has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

    protected function validateUniqueFields(array $data)
    {
        if ($this->uniqueFields) {
            foreach ($this->uniqueFields as $uniqueField) {
                $check = $this->getBySearch([$uniqueField => $data[$uniqueField]]);
Severity: Minor
Found in src/Models/Model.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

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

    protected function validateRequiredFields(array $data)
    {
        if ($this->requiredFields) {
            foreach ($this->requiredFields as $requiredField) {
                if (!array_key_exists($requiredField, $data)) {
Severity: Minor
Found in src/Models/Model.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

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

    protected function attachHABTM()
    {
        if ($this->hasAndBelongsToMany) {
            foreach ($this->hasAndBelongsToMany as $habtmModel) {
                $class = new \ReflectionClass($this);
Severity: Minor
Found in src/Models/Model.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