atelierspierrot/validators

View on GitHub

Showing 16 of 16 total issues

Function validateLocalPart has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
Open

    public function validateLocalPart($value, $send_errors=false)
    {
        // check for local part length compliance (max 64 chars.)
        $lengthValidator = new StringLengthValidator(0, 64);
        try {
Severity: Minor
Found in src/Validator/EmailValidator.php - About 3 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

Function validateDomainPart has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
Open

    public function validateDomainPart($value, $send_errors = false)
    {
        // the domain name must be an IP address between brackets ...
        if (
            substr($value, 0, 1)=='[' &&
Severity: Minor
Found in src/Validator/EmailValidator.php - About 3 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

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

    public function validate($value, $send_errors = false)
    {

        // check for length compliance (max 255 chars.)
        $lengthValidator = new StringLengthValidator(0, 255);
Severity: Minor
Found in src/Validator/HostnameValidator.php - About 3 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

Method validateLocalPart has 49 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function validateLocalPart($value, $send_errors=false)
    {
        // check for local part length compliance (max 64 chars.)
        $lengthValidator = new StringLengthValidator(0, 64);
        try {
Severity: Minor
Found in src/Validator/EmailValidator.php - About 1 hr to fix

    Method validate has 48 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function validate($value, $send_errors = false)
        {
    
            // check for length compliance (max 255 chars.)
            $lengthValidator = new StringLengthValidator(0, 255);
    Severity: Minor
    Found in src/Validator/HostnameValidator.php - About 1 hr to fix

      Method validateDomainPart has 38 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function validateDomainPart($value, $send_errors = false)
          {
              // the domain name must be an IP address between brackets ...
              if (
                  substr($value, 0, 1)=='[' &&
      Severity: Minor
      Found in src/Validator/EmailValidator.php - About 1 hr to fix

        Function search has 28 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

                search: function(term) {
                    // Create a new search index if needed
                    if (!bhIndex) {
                        bhIndex = new Bloodhound({
                            limit: 500,
        Severity: Minor
        Found in phpdoc/sami.js - About 1 hr to fix

          Method validate has 27 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function validate($value, $send_errors = false)
              {
                  // the mask validation
                  $full_mask = $this->getMask($this->version.'_full');
                  $mask = $this->getMask($this->version);
          Severity: Minor
          Found in src/Validator/InternetProtocolValidator.php - About 1 hr to fix

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

                public function loadClass($className)
                {
                    if ($filePath = $this->resolveFileName($className)) {
                        if ($this->getFailureFlag() & self::FAIL_GRACEFULLY) {
                            if ($this->classFileExists($filePath)) {
            Severity: Minor
            Found in src/SplClassLoader.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 validate has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
            Open

                public function validate($value, $send_errors = false)
                {
                    // the mask validation
                    $full_mask = $this->getMask($this->version.'_full');
                    $mask = $this->getMask($this->version);
            Severity: Minor
            Found in src/Validator/InternetProtocolValidator.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

            Avoid too many return statements within this method.
            Open

                                return false;
            Severity: Major
            Found in src/Validator/EmailValidator.php - About 30 mins to fix

              Avoid too many return statements within this method.
              Open

                      return true;
              Severity: Major
              Found in src/Validator/EmailValidator.php - About 30 mins to fix

                Avoid too many return statements within this method.
                Open

                        return true;
                Severity: Major
                Found in src/Validator/HostnameValidator.php - About 30 mins to fix

                  Avoid too many return statements within this method.
                  Open

                                      return false;
                  Severity: Major
                  Found in src/Validator/HostnameValidator.php - About 30 mins to fix

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

                        public function validate($value, $send_errors = false)
                        {
                            $_length = strlen($value);
                    
                            if ($_length<$this->min_length) {
                    Severity: Minor
                    Found in src/Validator/StringLengthValidator.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 validate has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                    Open

                        public function validate($value, $send_errors = false)
                        {
                            // have we got a mask ?
                            if (empty($this->mask)) {
                                if (true===$send_errors) {
                    Severity: Minor
                    Found in src/Validator/StringMaskValidator.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