open-orchestra/open-orchestra-cms-bundle

View on GitHub
Backoffice/GenerateForm/Strategies/SearchResultStrategy.php

Summary

Maintainability
A
1 hr
Test Coverage

Method buildForm has 36 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder->add('nodeId', 'text', array(
            'group_id' => 'data',
            'sub_group_id' => 'content',
Severity: Minor
Found in Backoffice/GenerateForm/Strategies/SearchResultStrategy.php - About 1 hr to fix

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

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

        $builder->add('fielddisplayed', 'text', array(

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

        $builder->add('nbdoc', 'integer', array(

Call to method getComponent from undeclared class \OpenOrchestra\ModelInterface\Model\BlockInterface
Open

        return $this->getName() === $block->getComponent();

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->add('optionsearch', 'text', array(

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

        $builder->add('filter', 'text', array(

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

        $builder->add('nodeId', 'text', array(

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

        $builder->add('limitField', 'integer', array(

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

        $builder->add('facets', 'text', array(

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

        $builder->add('nbspellcheck', 'integer', array(

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

        $builder->add('optionsdismax', 'text', array(

Parameter $block has undeclared type \OpenOrchestra\ModelInterface\Model\BlockInterface
Open

    public function support(BlockInterface $block)

The closing brace for the class must go on the next line after the body
Open

}

There are no issues that match your filters.

Category
Status