open-orchestra/open-orchestra-cms-bundle

View on GitHub
Workflow/Form/Type/Component/WorkflowStatusParametersType.php

Summary

Maintainability
A
0 mins
Test Coverage

Avoid unused parameters such as '$options'.
Open

    public function buildForm(FormBuilderInterface $builder, array $options)

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

Parameter $builder has undeclared type \Symfony\Component\Form\FormBuilderInterface
Open

    public function buildForm(FormBuilderInterface $builder, array $options)

Call to method add from undeclared class \Symfony\Component\Form\FormBuilderInterface
Open

        $builder

Call to method setDefault from undeclared class \Symfony\Component\OptionsResolver\OptionsResolver
Open

        $resolver->setDefault('data_class', $this->statusClass);

Parameter $resolver has undeclared type \Symfony\Component\OptionsResolver\OptionsResolver
Open

    public function configureOptions(OptionsResolver $resolver)

Class extends undeclared class \Symfony\Component\Form\AbstractType
Open

class WorkflowStatusParametersType extends AbstractType

Space found before comma in function call
Open

            ->add('initialState'        , 'checkbox', array('required' => false))

Space found before comma in function call
Open

            ->add('translationState'    , 'checkbox', array('required' => false))

Space found before comma in function call
Open

            ->add('publishedState'      , 'checkbox', array('required' => false))

There are no issues that match your filters.

Category
Status