skqr/hateoas

View on GitHub
JsonApi/Serializer/LinkedResourcesSerialization.php

Summary

Maintainability
A
0 mins
Test Coverage

Avoid variables with short names like $id. Configured minimum length is 3.
Open

    public function getLinkedResource($type, $id)

ShortVariable

Since: 0.2

Detects when a field, local, or parameter has a very short name.

Example

class Something {
    private $q = 15; // VIOLATION - Field
    public static function main( array $as ) { // VIOLATION - Formal
        $r = 20 + $this->q; // VIOLATION - Local
        for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
            $r += $this->q;
        }
    }
}

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

Avoid variables with short names like $id. Configured minimum length is 3.
Open

    public function hasLinkedResource($type, $id)

ShortVariable

Since: 0.2

Detects when a field, local, or parameter has a very short name.

Example

class Something {
    private $q = 15; // VIOLATION - Field
    public static function main( array $as ) { // VIOLATION - Formal
        $r = 20 + $this->q; // VIOLATION - Local
        for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
            $r += $this->q;
        }
    }
}

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

Multi-line function declarations must define one parameter per line
Open

        EntityResource $resource, array $resourceObject

TRUE, FALSE and NULL must be lowercase; expected "null" but found "NULL"
Open

    public function hasTopLevelLinks($type = NULL)

Expected 1 space after FUNCTION keyword; 0 found
Open

        $callback = function(array $serializedLinks) use (&$topLevelLinks) {

The closing parenthesis and the opening brace of a multi-line function declaration must be on the same line
Open

    {

Expected 0 spaces after opening bracket; newline found
Open

        if (

There are no issues that match your filters.

Category
Status