pug-php/js-phpize

View on GitHub

Showing 179 of 179 total issues

Method visitFunctionCall has 29 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    protected function visitFunctionCall(FunctionCall $functionCall, $indent)
    {
        $function = $functionCall->function;
        $arguments = $functionCall->arguments;
        $applicant = $functionCall->applicant;
Severity: Minor
Found in src/JsPhpize/Compiler/Compiler.php - About 1 hr to fix

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

        public function compile($input, $filename = null)
        {
            $this->flags = 0;
    
            if ($filename === null) {
    Severity: Minor
    Found in src/JsPhpize/JsPhpize.php - About 1 hr to fix

      Function getVariableChildFromToken has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

          protected function getVariableChildFromToken(Token $token)
          {
              if ($token->is('.')) {
                  $this->skip();
                  $token = $this->next();
      Severity: Minor
      Found in src/JsPhpize/Parser/TokenExtractor.php - About 55 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 parseFunctionCallChildren has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

          protected function parseFunctionCallChildren($function, $applicant = null)
          {
              $arguments = $this->parseParentheses()->nodes;
              $children = [];
      
      
      Severity: Minor
      Found in src/JsPhpize/Parser/Parser.php - About 55 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 next has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          public function next()
          {
              if (!mb_strlen($this->input)) {
                  return false;
              }
      Severity: Minor
      Found in src/JsPhpize/Lexer/Lexer.php - About 45 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

      Each class must be in a file by itself
      Open

      class ExpressionStream

      Method __construct has 5 arguments (exceeds 4 allowed). Consider refactoring.
      Open

          public function __construct($operator, Value $leftHand, Value $rightHand, array $before = null, array $after = null)
      Severity: Minor
      Found in src/JsPhpize/Nodes/Dyiade.php - About 35 mins to fix

        Method visitNodesArray has 5 arguments (exceeds 4 allowed). Consider refactoring.
        Open

            protected function visitNodesArray($array, $indent, $glue = '', $pattern = null, $options = 0)
        Severity: Minor
        Found in src/JsPhpize/Compiler/Compiler.php - About 35 mins to fix

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

              protected function readInterpolation($value)
              {
                  while (strlen($value)) {
                      preg_match('/^([\s\S]*)(?:(\\\\|\\${)[\s\S]*)?$/U', $value, $match);
          
          
          Severity: Minor
          Found in src/JsPhpize/Compiler/InterpolationTrait.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

          Method name "ExpressionStream::url_stat" is not in camel caps format
          Open

              public function url_stat($path, $flags)

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

              protected function parseKeywordStatement($token)
              {
                  $name = $token->value;
                  $keyword = new Block($name);
          
          
          Severity: Minor
          Found in src/JsPhpize/Parser/Parser.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

          Method name "ExpressionStream::stream_open" is not in camel caps format
          Open

              public function stream_open($path)

          Method name "ExpressionStream::stream_tell" is not in camel caps format
          Open

              public function stream_tell()

          Method name "ExpressionStream::stream_read" is not in camel caps format
          Open

              public function stream_read($count)

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

              protected function visitFunctionCall(FunctionCall $functionCall, $indent)
              {
                  $function = $functionCall->function;
                  $arguments = $functionCall->arguments;
                  $applicant = $functionCall->applicant;
          Severity: Minor
          Found in src/JsPhpize/Compiler/Compiler.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 getInitialValue has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

              protected function getInitialValue($token)
              {
                  if ($token->isFunction()) {
                      return $this->parseFunction();
                  }
          Severity: Minor
          Found in src/JsPhpize/Parser/TokenExtractor.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

          Method name "ExpressionStream::stream_set_option" is not in camel caps format
          Open

              public function stream_set_option($option, $arg1, $arg2)

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

              protected function parseInstructions($block)
              {
                  $initNext = false;
          
                  while ($token = $this->next()) {
          Severity: Minor
          Found in src/JsPhpize/Parser/Parser.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

          Method name "ExpressionStream::stream_stat" is not in camel caps format
          Open

              public function stream_stat()

          Method name "ExpressionStream::stream_eof" is not in camel caps format
          Open

              public function stream_eof()
          Severity
          Category
          Status
          Source
          Language