symplely/coroutine

View on GitHub
Coroutine/SocketMessage.php

Summary

Maintainability
C
1 day
Test Coverage

File SocketMessage.php has 293 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

declare(strict_types=1);

namespace Async;
Severity: Minor
Found in Coroutine/SocketMessage.php - About 3 hrs to fix

    Function parse has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
    Open

      public function parse($headers)
      {
        $this->headers = [];
        $this->parameters = [];
        $this->path = '';
    Severity: Minor
    Found in Coroutine/SocketMessage.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 parse has 37 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      public function parse($headers)
      {
        $this->headers = [];
        $this->parameters = [];
        $this->path = '';
    Severity: Minor
    Found in Coroutine/SocketMessage.php - About 1 hr to fix

      Method response has 32 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        public function response(
          ?string $body = null,
          ?int $status = null,
          ?string $type = 'text/html',
          array ...$extra
      Severity: Minor
      Found in Coroutine/SocketMessage.php - About 1 hr to fix

        Function request has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
        Open

          public function request(
            string $method = 'GET',
            string $path = '/',
            ?string $type = 'text/html',
            $data = null,
        Severity: Minor
        Found in Coroutine/SocketMessage.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

        Function response has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
        Open

          public function response(
            ?string $body = null,
            ?int $status = null,
            ?string $type = 'text/html',
            array ...$extra
        Severity: Minor
        Found in Coroutine/SocketMessage.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 request has 26 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          public function request(
            string $method = 'GET',
            string $path = '/',
            ?string $type = 'text/html',
            $data = null,
        Severity: Minor
        Found in Coroutine/SocketMessage.php - About 1 hr to fix

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

              string $method = 'GET',
              string $path = '/',
              ?string $type = 'text/html',
              $data = null,
              array ...$extra
          Severity: Minor
          Found in Coroutine/SocketMessage.php - About 35 mins to fix

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

              public function getVariable(string $key, string $var, $default = '')
              {
                if ($this->hasVariable($key, $var)) {
                  $line = $this->getHeader($key);
                  $sections = \strpos($line, '; ') !== false ? \explode('; ', $line) : [$line];
            Severity: Minor
            Found in Coroutine/SocketMessage.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

            There are no issues that match your filters.

            Category
            Status