File SocketMessage.php
has 293 lines of code (exceeds 250 allowed). Consider refactoring. Open
<?php
declare(strict_types=1);
namespace Async;
Function parse
has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring. Open
public function parse($headers)
{
$this->headers = [];
$this->parameters = [];
$this->path = '';
- Read upRead up
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 = '';
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
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
- Read upRead up
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 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,
- Read upRead up
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,
Method request
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
string $method = 'GET',
string $path = '/',
?string $type = 'text/html',
$data = null,
array ...$extra
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];
- Read upRead up
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"