Test Failed
Push — develop ( 01a8a8...14ce66 )
by Guilherme
65:10
created

DDC964Admin::loadMetadata()   B

Complexity

Conditions 1
Paths 1

Size

Total Lines 37
Code Lines 21

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 37
rs 8.8571
c 0
b 0
f 0
cc 1
eloc 21
nc 1
nop 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Doctrine\Tests\Models\DDC964;
6
7
use Doctrine\ORM\Annotation as ORM;
8
use Doctrine\ORM\Mapping;
9
10
/**
11
 * @ORM\Entity
12
 * @ORM\AssociationOverrides({
13
 *      @ORM\AssociationOverride(
14
 *          name="groups",
15
 *          joinTable=@ORM\JoinTable(
16
 *              name="ddc964_users_admingroups",
17
 *              joinColumns=@ORM\JoinColumn(name="adminuser_id"),
18
 *              inverseJoinColumns=@ORM\JoinColumn(name="admingroup_id")
19
 *          )
20
 *      ),
21
 *      @ORM\AssociationOverride(
22
 *          name="address",
23
 *          joinColumns=@ORM\JoinColumn(
24
 *              name="adminaddress_id", referencedColumnName="id"
25
 *          )
26
 *      )
27
 * })
28
 */
29
class DDC964Admin extends DDC964User
30
{
31
}
32