curtiskelsey /
doctrine-repo-helper
| 1 | <?php |
||
| 2 | |||
| 3 | namespace DoctrineRepoHelperTest\Entity; |
||
| 4 | |||
| 5 | use Doctrine\ORM\Mapping as ORM; |
||
| 6 | |||
| 7 | /** |
||
| 8 | * Class Box |
||
| 9 | * @package DoctrineRepoHelper\Entity |
||
| 10 | * @ORM\Entity(repositoryClass="DoctrineRepoHelperTest\Repository\BoxRepository") |
||
| 11 | */ |
||
| 12 | class Box |
||
| 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
Loading history...
|
|||
| 21 | } |
||
| 22 |