JsonKey
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 0
eloc 2
c 1
b 0
f 1
dl 0
loc 7
1
<?php
2
3
namespace TheCodingMachine\TDBM\Utils\Annotation;
4
5
use Doctrine\Common\Annotations\Annotation\Required;
6
7
/**
8
 * @Annotation
9
 */
10
final class JsonKey
11
{
12
    /**
13
     * @Required()
14
     * @var string
15
     */
16
    public $key;
17
}
18