bcit-ci/CodeIgniter

View on GitHub
system/helpers/captcha_helper.php

Summary

Maintainability
F
3 days
Test Coverage

Function create_captcha has a Cognitive Complexity of 113 (exceeds 5 allowed). Consider refactoring.
Open

    function create_captcha($data)
    {
        $defaults = array(
            'word'        => '',
            'img_path'    => '',
Severity: Minor
Found in system/helpers/captcha_helper.php - About 2 days 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 create_captcha has 229 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    function create_captcha($data)
    {
        $defaults = array(
            'word'        => '',
            'img_path'    => '',
Severity: Major
Found in system/helpers/captcha_helper.php - About 1 day to fix

    Avoid deeply nested control flow statements.
    Open

                        if ($byte_index === $pool_length)
                        {
                            // No failures should be possible if the
                            // first get_random_bytes() call didn't
                            // return FALSE, but still ...
    Severity: Major
    Found in system/helpers/captcha_helper.php - About 45 mins to fix

      Avoid deeply nested control flow statements.
      Open

                          if ($rand_index > $rand_max)
                          {
                              continue;
                          }
      Severity: Major
      Found in system/helpers/captcha_helper.php - About 45 mins to fix

        Avoid too many return statements within this method.
        Open

                        return FALSE;
        Severity: Major
        Found in system/helpers/captcha_helper.php - About 30 mins to fix

          Avoid too many return statements within this method.
          Open

                  return array('word' => $word, 'time' => $now, 'image' => $img, 'filename' => $img_filename);
          Severity: Major
          Found in system/helpers/captcha_helper.php - About 30 mins to fix

            Avoid too many return statements within this method.
            Open

                            return FALSE;
            Severity: Major
            Found in system/helpers/captcha_helper.php - About 30 mins to fix

              There are no issues that match your filters.

              Category
              Status