Table
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 6
dl 0
loc 16
c 0
b 0
f 0
wmc 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Doctrine\ORM\Annotation;
6
7
/**
8
 * @Annotation
9
 * @Target("CLASS")
10
 */
11
final class Table implements Annotation
12
{
13
    /** @var string */
14
    public $name;
15
16
    /** @var string */
17
    public $schema;
18
19
    /** @var array<\Doctrine\ORM\Annotation\Index> */
20
    public $indexes = [];
21
22
    /** @var array<\Doctrine\ORM\Annotation\UniqueConstraint> */
23
    public $uniqueConstraints = [];
24
25
    /** @var array */
26
    public $options = [];
27
}
28