Completed
Push — master ( 4718f5...e2e4f6 )
by Ruud
314:16 queued 303:41
created

FormAdaptorInterface::adaptForm()

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
c 0
b 0
f 0
1
<?php
2
3
namespace Kunstmaan\FormBundle\Entity;
4
5
use ArrayObject;
6
use Symfony\Component\Form\FormBuilderInterface;
7
8
/**
9
 * Form adaptor Interface
10
 */
11
interface FormAdaptorInterface
12
{
13
    /**
14
     * Modify the given FormBuilderInterface
15
     *
16
     * @param FormBuilderInterface $formBuilder The form builder
17
     * @param ArrayObject          $fields      The fields
18
     * @param int                  $sequence    The sequence of the form field
19
     */
20
    public function adaptForm(FormBuilderInterface $formBuilder, ArrayObject $fields, $sequence);
0 ignored issues
show
Documentation introduced by
For interfaces and abstract methods it is generally a good practice to add a @return annotation even if it is just @return void or @return null, so that implementors know what to do in the overridden method.

For interface and abstract methods, it is impossible to infer the return type from the immediate code. In these cases, it is generally advisible to explicitly annotate these methods with a @return doc comment to communicate to implementors of these methods what they are expected to return.

Loading history...
21
22
    /**
23
     * Returns a unique id
24
     *
25
     * @return string
26
     */
27
    public function getUniqueId();
28
}
29