Passed
Push — develop ( ded98c...5fca67 )
by Mathieu
02:55
created

ListField::getPosition()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
c 0
b 0
f 0
dl 0
loc 3
rs 10
cc 1
nc 1
nop 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace KunicMarko\SonataAnnotationBundle\Annotation;
6
7
/**
8
 * List field annotation.
9
 *
10
 * Allows you to configure your list field.
11
 *
12
 * @Annotation
13
 * @Target({"PROPERTY", "METHOD"})
14
 *
15
 * @author Marko Kunic <[email protected]>
16
 * @author Mathieu Wambre <[email protected]>
17
 */
18
class ListField extends AbstractField
19
{
20
21
    /**
22
     * Field position.
23
     *
24
     * @var int
25
     */
26
    public int $position;
27
28
}
29