File LegacyHttpOGMTranslator.php
has 340 lines of code (exceeds 250 allowed). Consider refactoring. Open
<?php
declare(strict_types=1);
/*
- Create a ticketCreate a ticket
Function translateValue
has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring. Open
private function translateValue(float|array|bool|int|string|stdClass|null $value, HttpMetaInfo $meta): array
{
if (is_object($value)) {
return $this->translateObject($value, $meta);
}
- 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
Method translatePoint
has 31 lines of code (exceeds 25 allowed). Consider refactoring. Open
private function translatePoint(stdClass $value): PointInterface
{
/** @var stdClass $crs */
$crs = $value->crs;
/** @var array{0: float, 1: float, 2:float} $coordinates */
- Create a ticketCreate a ticket
Method translateString
has 30 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function translateString(string $value, HttpMetaInfo $meta): array
{
switch ($meta->getCurrentType()) {
case 'duration':
$meta = $meta->incrementMeta();
- Create a ticketCreate a ticket
Function translateString
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
public function translateString(string $value, HttpMetaInfo $meta): array
{
switch ($meta->getCurrentType()) {
case 'duration':
$meta = $meta->incrementMeta();
- 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"