Showing 38 of 61 total issues
Function prepareVersion
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
public function prepareVersion(string $version): void
{
if (array_key_exists($version, $this->supportedVersions) === false) {
throw new \InvalidArgumentException(sprintf('Version %s not supported', $version));
}
- 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 producev
has 7 arguments (exceeds 4 allowed). Consider refactoring. Open
int $partition,
int $msgflags,
?string $payload = null,
?string $key = null,
?array $headers = null,
Function __construct
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
public function __construct(CData $nativeMessage)
{
$timestampType = Library::new('rd_kafka_timestamp_type_t');
$this->timestamp = (int) Library::rd_kafka_message_timestamp($nativeMessage, FFI::addr($timestampType));
$this->timestampType = (int) $timestampType->cdata;
- 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 __construct
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
string $message,
int $code,
string $error_string,
bool $isFatal = false,
bool $isRetriable = false,
Method __invoke
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
?CData $topic,
?CData $keydata,
int $keylen,
int $partition_cnt,
?CData $topic_opaque = null,
Method __invoke
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
?CData $topic,
?CData $keydata,
int $keylen,
int $partition_cnt,
?CData $topic_opaque = null,
Method __construct
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
public function __construct(int $id, int $err, int $leader, Collection $replicas, Collection $isrs)
Method queryWatermarkOffsets
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
public function queryWatermarkOffsets(string $topic, int $partition, int &$low, int &$high, int $timeout_ms): void
Method produce
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
public function produce(int $partition, int $msgflags, ?string $payload = null, ?string $key = null, $opaque = null): void
Function loadSupportedVersions
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
private function loadSupportedVersions(): array
{
echo 'Load librdkafka releases ...';
$content = file_get_contents(
- 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
Avoid too many return
statements within this method. Open
return $content;
Avoid too many return
statements within this method. Open
return '';
Avoid too many return
statements within this method. Open
return '//' . $matches[1];
Function setReplicaAssignment
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public function setReplicaAssignment(int $new_partition_id, array $broker_ids): void
{
if (empty($broker_ids) === true) {
throw new \InvalidArgumentException('broker_ids array must not be empty');
}
- 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 parse
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
protected function parse(): void
{
$this->version = $this->parseInt16();
switch ($this->version) {
- 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 setReplicaAssignment
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public function setReplicaAssignment(int $partition_id, array $broker_ids): void
{
if (empty($broker_ids) === true) {
throw new \InvalidArgumentException('broker_ids array must not be empty');
}
- 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 parse
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
protected function parse(): void
{
$this->version = $this->parseInt16();
switch ($this->version) {
- 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 parse
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
private function parse(string $version): void
{
echo ' Parse ...' . PHP_EOL;
$parser = new Parser($this->config);
- 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"