kahlan/kahlan

View on GitHub

Showing 191 of 191 total issues

File Parser.php has 652 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
namespace Kahlan\Jit;

use Kahlan\Jit\Node\NodeDef;
use Kahlan\Jit\Node\FunctionDef;
Severity: Major
Found in src/Jit/Parser.php - About 1 day to fix

    File Kahlan.php has 616 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    namespace Kahlan\Cli {
    
        use Kahlan\Jit\Patcher\FinalClass;
        use RecursiveDirectoryIterator;
    Severity: Major
    Found in src/Cli/Kahlan.php - About 1 day to fix

      File ClassLoader.php has 498 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      <?php
      namespace Kahlan\Jit;
      
      use InvalidArgumentException;
      use RecursiveIteratorIterator;
      Severity: Minor
      Found in src/Jit/ClassLoader.php - About 7 hrs to fix

        Method initKahlanGlobalFunctions has 164 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            function initKahlanGlobalFunctions()
            {
                if (getenv('KAHLAN_DISABLE_FUNCTIONS') || (defined('KAHLAN_DISABLE_FUNCTIONS') && KAHLAN_DISABLE_FUNCTIONS)) {
                    return;
                }
        Severity: Major
        Found in src/Cli/Kahlan.php - About 6 hrs to fix

          Function initKahlanGlobalFunctions has a Cognitive Complexity of 41 (exceeds 5 allowed). Consider refactoring.
          Open

              function initKahlanGlobalFunctions()
              {
                  if (getenv('KAHLAN_DISABLE_FUNCTIONS') || (defined('KAHLAN_DISABLE_FUNCTIONS') && KAHLAN_DISABLE_FUNCTIONS)) {
                      return;
                  }
          Severity: Minor
          Found in src/Cli/Kahlan.php - About 6 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 _parser has a Cognitive Complexity of 41 (exceeds 5 allowed). Consider refactoring.
          Open

              protected function _parser($content)
              {
                  $this->_initLines($content);
                  $this->_stream = new TokenStream(['source' => $content, 'wrap' => $this->_states['php']]);
          
          
          Severity: Minor
          Found in src/Jit/Parser.php - About 6 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 _findFileWithExtension has a Cognitive Complexity of 40 (exceeds 5 allowed). Consider refactoring.
          Open

              protected function _findFileWithExtension($class, $ext)
              {
                  // PSR-4 lookup
                  $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext;
          
          
          Severity: Minor
          Found in src/Jit/ClassLoader.php - About 6 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 _parser has 146 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              protected function _parser($content)
              {
                  $this->_initLines($content);
                  $this->_stream = new TokenStream(['source' => $content, 'wrap' => $this->_states['php']]);
          
          
          Severity: Major
          Found in src/Jit/Parser.php - About 5 hrs to fix

            ClassLoader has 42 functions (exceeds 20 allowed). Consider refactoring.
            Open

            class ClassLoader
            {
                /**
                 * Autoloaded files.
                 */
            Severity: Minor
            Found in src/Jit/ClassLoader.php - About 5 hrs to fix

              File Terminal.php has 371 lines of code (exceeds 250 allowed). Consider refactoring.
              Open

              <?php
              namespace Kahlan\Reporter;
              
              use Kahlan\Log;
              use Kahlan\Util\Text;
              Severity: Minor
              Found in src/Reporter/Terminal.php - About 4 hrs to fix

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

                    public static function find($message, $index = 0, $times = 0, &$args = [])
                    {
                        $success = false;
                        $messages = !is_array($message) ? [$message] : $message;
                
                
                Severity: Minor
                Found in src/Plugin/Call/Calls.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

                Function _monkeyPatch has a Cognitive Complexity of 29 (exceeds 5 allowed). Consider refactoring.
                Open

                    protected function _monkeyPatch($node, $parent, $index)
                    {
                        if (!preg_match_all($this->_regex, $node->body, $matches, PREG_OFFSET_CAPTURE | PREG_SET_ORDER)) {
                            return;
                        }
                Severity: Minor
                Found in src/Jit/Patcher/Monkey.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

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

                    protected function _reference($reference)
                    {
                        if (!is_string($reference)) {
                            return $reference;
                        }
                Severity: Major
                Found in src/Plugin/Stub.php and 1 other location - About 3 hrs to fix
                src/Matcher/ToReceive.php on lines 156..174

                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 158.

                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

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

                    protected function _reference($reference)
                    {
                        if (!is_string($reference)) {
                            return $reference;
                        }
                Severity: Major
                Found in src/Matcher/ToReceive.php and 1 other location - About 3 hrs to fix
                src/Plugin/Stub.php on lines 89..107

                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 158.

                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

                Function _export has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
                Open

                    protected static function _export($path, $tree, $coverage)
                    {
                        $result = [
                            'TN:',
                            'SF:' . $path
                Severity: Minor
                Found in src/Reporter/Coverage/Exporter/Lcov.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 _coverage has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
                Open

                    protected function _coverage($file, $coverage)
                    {
                        $result = [];
                        $root = $this->parse($file);
                        foreach ($root->lines['content'] as $num => $content) {
                Severity: Minor
                Found in src/Reporter/Coverage/Collector.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 _export has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
                Open

                    protected static function _export($path, $tree, $coverage)
                    {
                        $s = (object) [];
                        $statementMap = (object) [];
                        $statementIndex = 0;
                Severity: Minor
                Found in src/Reporter/Coverage/Exporter/Istanbul.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

                Block has 28 functions (exceeds 20 allowed). Consider refactoring.
                Open

                abstract class Block
                {
                
                    /**
                     * The block type.
                Severity: Minor
                Found in src/Block.php - About 3 hrs to fix

                  Parser has 28 functions (exceeds 20 allowed). Consider refactoring.
                  Open

                  class Parser
                  {
                      /**
                       * @var int
                       * @internal
                  Severity: Minor
                  Found in src/Jit/Parser.php - About 3 hrs to fix

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

                        public static function match($actual, $expected)
                        {
                            $args = func_get_args();
                            $expected = count($args) > 2 ? array_slice($args, 1) : $expected;
                            $expected = (array) $expected;
                    Severity: Minor
                    Found in src/Matcher/ToContainKey.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

                    Severity
                    Category
                    Status
                    Source
                    Language