jeremeamia/super_closure

View on GitHub

Showing 13 of 13 total issues

Function determineTokens has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
Open

    private function determineTokens(array &$data)
    {
        $potential = $this->determinePotentialTokens($data['reflection']);
        $braceLevel = $index = $step = $insideUse = 0;
        $data['tokens'] = $data['context'] = [];
Severity: Minor
Found in src/Analyzer/TokenAnalyzer.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 wrapClosures has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
Open

    public static function wrapClosures(&$data, SerializerInterface $serializer)
    {
        if ($data instanceof \Closure) {
            // Handle and wrap closure objects.
            $reflection = new \ReflectionFunction($data);
Severity: Minor
Found in src/Serializer.php - About 2 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 determineTokens has 50 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    private function determineTokens(array &$data)
    {
        $potential = $this->determinePotentialTokens($data['reflection']);
        $braceLevel = $index = $step = $insideUse = 0;
        $data['tokens'] = $data['context'] = [];
Severity: Minor
Found in src/Analyzer/TokenAnalyzer.php - About 2 hrs to fix

    Function enterNode has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
    Open

        public function enterNode(AstNode $node)
        {
            // Determine information about the closure's location
            if (!$this->closureNode) {
                if ($node instanceof NamespaceNode) {
    Severity: Minor
    Found in src/Analyzer/Visitor/ClosureLocatorVisitor.php - About 1 hr 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 enterNode has 27 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function enterNode(AstNode $node)
        {
            // Determine information about the closure's location
            if (!$this->closureNode) {
                if ($node instanceof NamespaceNode) {
    Severity: Minor
    Found in src/Analyzer/Visitor/ClosureLocatorVisitor.php - About 1 hr to fix

      Method wrapClosures has 26 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public static function wrapClosures(&$data, SerializerInterface $serializer)
          {
              if ($data instanceof \Closure) {
                  // Handle and wrap closure objects.
                  $reflection = new \ReflectionFunction($data);
      Severity: Minor
      Found in src/Serializer.php - About 1 hr to fix

        Function getData has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

            public function getData(\Closure $closure, $forSerialization = false)
            {
                // Use the closure analyzer to get data about the closure.
                $data = $this->analyzer->analyze($closure);
        
        
        Severity: Minor
        Found in src/Serializer.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

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

        function __reconstruct_closure(array $__data)
        {
            // Simulate the original context the closure was created in.
            foreach ($__data['context'] as $__var_name => &$__value) {
                if ($__value instanceof SerializableClosure) {
        Severity: Minor
        Found in src/SerializableClosure.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 new StringNode($this->location['method'] ?: '');
        Severity: Major
        Found in src/Analyzer/Visitor/MagicConstantVisitor.php - About 30 mins to fix

          Avoid too many return statements within this method.
          Open

                          return new StringNode($this->location['namespace'] ?: '');
          Severity: Major
          Found in src/Analyzer/Visitor/MagicConstantVisitor.php - About 30 mins to fix

            Avoid too many return statements within this method.
            Open

                            return new NumberNode($node->getAttribute('startLine') ?: 0);
            Severity: Major
            Found in src/Analyzer/Visitor/MagicConstantVisitor.php - About 30 mins to fix

              Avoid too many return statements within this method.
              Open

                              return new StringNode($this->location['trait'] ?: '');
              Severity: Major
              Found in src/Analyzer/Visitor/MagicConstantVisitor.php - About 30 mins to fix

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

                    public function leaveNode(AstNode $node)
                    {
                        // Determine information about the closure's location
                        if (!$this->closureNode) {
                            if ($node instanceof NamespaceNode) {
                Severity: Minor
                Found in src/Analyzer/Visitor/ClosureLocatorVisitor.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