1 | <?php |
||
2 | |||
3 | namespace DoctrineRepoHelperTest\Entity; |
||
4 | |||
5 | use Doctrine\ORM\Mapping as ORM; |
||
6 | |||
7 | /** |
||
8 | * Class Example |
||
9 | * @package DoctrineRepoHelper\Entity |
||
10 | * @ORM\Entity(repositoryClass="DoctrineRepoHelperTest\Repository\ExampleRepository") |
||
11 | */ |
||
12 | class Example |
||
13 | { |
||
14 | /** |
||
15 | * @var int |
||
16 | * @ORM\Column(type="integer") |
||
17 | * @ORM\Id |
||
18 | * @ORM\GeneratedValue |
||
19 | */ |
||
20 | private $id; |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
21 | } |
||
22 |