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

ShowField

Complexity

Total Complexity 0

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

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