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

app/Acme/Entity/CountryTrait.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

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
Member variable "Country" is not in valid camel caps format
Loading history...
18
}
19