Showing 25 of 36 total issues
Function getDriver
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
public function getDriver(SessionConfiguration $config, ?string $alias = null): DriverInterface
{
$alias ??= $this->decideAlias($alias);
if (!array_key_exists($alias, $this->driverSetups)) {
- Read upRead up
- Create a ticketCreate a ticket
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 [$value, $meta->incrementMeta()];
- Create a ticketCreate a ticket
Avoid too many return
statements within this method. Open
return $this->translateString($value, $meta);
- Create a ticketCreate a ticket
Function translateObject
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
private function translateObject(stdClass $value, HttpMetaInfo $meta): array
{
$type = $meta->getCurrentType();
if ($type === 'relationship') {
/** @var stdClass $relationship */
- Read upRead up
- Create a ticketCreate a ticket
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 6 (exceeds 5 allowed). Consider refactoring. Open
public function next(): void
{
$generator = $this->getGenerator();
if ($this->cache === []) {
$this->setupCache();
- Read upRead up
- Create a ticketCreate a ticket
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"