open-orchestra/open-orchestra-cms-bundle

View on GitHub
Workflow/Validator/Constraints/WorkflowParameter.php

Summary

Maintainability
A
0 mins
Test Coverage

Reference to undeclared constant \OpenOrchestra\Workflow\Validator\Constraints\WorkflowParameter::CLASS_CONSTRAINT
Open

        return self::CLASS_CONSTRAINT;

Class extends undeclared class \Symfony\Component\Validator\Constraint
Open

class WorkflowParameter extends Constraint

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

    public $uniqueParameterMessage   = 'open_orchestra_workflow_admin_validators.workflow_parameters.unique';

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

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

    public $requiredParameterMessage = 'open_orchestra_workflow_admin_validators.workflow_parameters.required';

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

There are no issues that match your filters.

Category
Status