crysalead/kahlan

View on GitHub

Showing 187 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

                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

                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

                  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

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

                        protected function _addClosingParenthesis($pos, $index, $parent)
                        {
                            $count = 0;
                            $nodes = $parent->tree;
                            $total = count($nodes);
                    Severity: Minor
                    Found in src/Jit/Patcher/Monkey.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 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

                    File Double.php has 295 lines of code (exceeds 250 allowed). Consider refactoring.
                    Open

                    <?php
                    namespace Kahlan\Plugin;
                    
                    use Kahlan\Jit\Parser;
                    use Kahlan\Jit\Patcher\Pointcut;
                    Severity: Minor
                    Found in src/Plugin/Double.php - About 3 hrs to fix
                      Severity
                      Category
                      Status
                      Source
                      Language