VSVverkeerskunde/gvq-api

View on GitHub
src/Statistics/Serializers/RankedCompanyParticipantNormalizer.php

Summary

Maintainability
A
0 mins
Test Coverage

Avoid excessively long variable names like $rankedCompanyParticipant. Keep variable name length under 20.
Open

    public function normalize($rankedCompanyParticipant, $format = null, array $context = [])

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

Source https://phpmd.org/rules/naming.html#longvariable

Line exceeds 120 characters; contains 124 characters
Open

            'answer1' => $rankedCompanyParticipant->getAnswer1() ? $rankedCompanyParticipant->getAnswer1()->toNative() : '',

Line exceeds 120 characters; contains 124 characters
Open

            'answer2' => $rankedCompanyParticipant->getAnswer2() ? $rankedCompanyParticipant->getAnswer2()->toNative() : '',

Expected 1 newline at end of file; 0 found
Open

}

There are no issues that match your filters.

Category
Status