YetiForceCompany/YetiForcePDF

View on GitHub
lib/Style/Normalizer/MarginLeft.php

Summary

Maintainability
A
0 mins
Test Coverage

Avoid assigning values to variables in if clauses and the like (line '25', column '8').
Open

    public function normalize($ruleValue, string $ruleName = ''): array
    {
        if (null === $this->normalized) {
            $css = [];
            if ($number = $this->getNumberValues($ruleValue)) {
Severity: Minor
Found in lib/Style/Normalizer/MarginLeft.php by phpmd

IfStatementAssignment

Since: 2.7.0

Assignments in if clauses and the like are considered a code smell. Assignments in PHP return the right operand as their result. In many cases, this is an expected behavior, but can lead to many difficult to spot bugs, especially when the right operand could result in zero, null or an empty string and the like.

Example

class Foo
{
    public function bar($flag)
    {
        if ($foo = 'bar') { // possible typo
            // ...
        }
        if ($baz = 0) { // always false
            // ...
        }
    }
}

Source http://phpmd.org/rules/cleancode.html#ifstatementassignment

Avoid unused parameters such as '$ruleName'.
Open

    public function normalize($ruleValue, string $ruleName = ''): array
Severity: Minor
Found in lib/Style/Normalizer/MarginLeft.php by phpmd

UnusedFormalParameter

Since: 0.2

Avoid passing parameters to methods or constructors and then not using those parameters.

Example

class Foo
{
    private function bar($howdy)
    {
        // $howdy is not used
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedformalparameter

Spaces must be used to indent lines; tabs are not allowed
Open

    {

Spaces must be used to indent lines; tabs are not allowed
Open

        if (null === $this->normalized) {

Spaces must be used to indent lines; tabs are not allowed
Open

    public function normalize($ruleValue, string $ruleName = ''): array

Spaces must be used to indent lines; tabs are not allowed
Open

            $css = [];

Spaces must be used to indent lines; tabs are not allowed
Open

        }

Spaces must be used to indent lines; tabs are not allowed
Open

        return $this->normalized;

Spaces must be used to indent lines; tabs are not allowed
Open

            }

Spaces must be used to indent lines; tabs are not allowed
Open

            if ($number = $this->getNumberValues($ruleValue)) {

Spaces must be used to indent lines; tabs are not allowed
Open

            $this->normalized = $css;

Spaces must be used to indent lines; tabs are not allowed
Open

                $css = ['margin-left' => $number[0]];

Spaces must be used to indent lines; tabs are not allowed
Open

    }

There are no issues that match your filters.

Category
Status