dandico23/DjampMVC

View on GitHub
lib/Validator.php

Summary

Maintainability
D
2 days
Test Coverage

File Validator.php has 369 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

namespace lib;

use lib\CustomException;
Severity: Minor
Found in lib/Validator.php - About 4 hrs to fix

    Function validateField has a Cognitive Complexity of 30 (exceeds 5 allowed). Consider refactoring.
    Open

        public function validateField($field, $value, $rule, $data)
        {
            $to_return = true;
    
            if ($rule == 'email') {
    Severity: Minor
    Found in lib/Validator.php - About 4 hrs 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

    Validator has 30 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class Validator
    {
        /**
         * @param array $data - list with the values to be validated
         * @param array $rules - the rules to be applied to each list element
    Severity: Minor
    Found in lib/Validator.php - About 3 hrs to fix

      Method validateField has 63 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function validateField($field, $value, $rule, $data)
          {
              $to_return = true;
      
              if ($rule == 'email') {
      Severity: Major
      Found in lib/Validator.php - About 2 hrs to fix

        Function validate has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
        Open

            public function validate($data, $rules)
            {
                if (empty($data)) {
                    throw new CustomException('Parâmetros não fornecidos', 500);
                }
        Severity: Minor
        Found in lib/Validator.php - About 2 hrs 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

        There are no issues that match your filters.

        Category
        Status