laudis-technologies/neo4j-php-client

View on GitHub
src/Formatter/Specialised/LegacyHttpOGMTranslator.php

Summary

Maintainability
C
1 day
Test Coverage

File LegacyHttpOGMTranslator.php has 340 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

declare(strict_types=1);

/*
Severity: Minor
Found in src/Formatter/Specialised/LegacyHttpOGMTranslator.php - About 4 hrs to fix

Function translateValue has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
Open

    private function translateValue($value, HttpMetaInfo $meta): array
    {
        if (is_object($value)) {
            return $this->translateObject($value, $meta);
        }
Severity: Minor
Found in src/Formatter/Specialised/LegacyHttpOGMTranslator.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 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 */
Severity: Minor
Found in src/Formatter/Specialised/LegacyHttpOGMTranslator.php - About 1 hr to fix

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();
Severity: Minor
Found in src/Formatter/Specialised/LegacyHttpOGMTranslator.php - About 1 hr to fix

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();
Severity: Minor
Found in src/Formatter/Specialised/LegacyHttpOGMTranslator.php - About 45 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

Avoid too many return statements within this method.
Open

        return [$value, $meta->incrementMeta()];
Severity: Major
Found in src/Formatter/Specialised/LegacyHttpOGMTranslator.php - About 30 mins to fix

Avoid too many return statements within this method.
Open

            return $this->translateString($value, $meta);
Severity: Major
Found in src/Formatter/Specialised/LegacyHttpOGMTranslator.php - About 30 mins to fix

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 */
Severity: Minor
Found in src/Formatter/Specialised/LegacyHttpOGMTranslator.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