Failed Conditions
Pull Request — experimental/3.1 (#2526)
by Kentaro
40:11 queued 13:18
created

CountryTrait

Complexity

Total Complexity 0

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 8
wmc 0
lcom 0
cbo 0
1
<?php
2
3
namespace Acme\Entity;
4
5
use Doctrine\ORM\Mapping as ORM;
6
use Eccube\Annotation as Eccube;
7
8
/**
9
 * @Eccube\EntityExtension("Eccube\Entity\Product")
10
 */
11
trait CountryTrait
12
{
13
    /**
14
     * @ORM\ManyToOne(targetEntity="\Eccube\Entity\Master\Country")
15
     * @ORM\JoinColumn(name="country_id", referencedColumnName="id")
16
     */
17
    public $Country;
0 ignored issues
show
Coding Style introduced by
Member variable "Country" is not in valid camel caps format
Loading history...
18
}
19