Identifier.php 493 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Bridge\Doctrine\Tests\Fixtures\Embeddable;
  11. use Doctrine\ORM\Mapping as ORM;
  12. /**
  13. * @ORM\Embeddable
  14. */
  15. class Identifier
  16. {
  17. /**
  18. * @var int
  19. *
  20. * @ORM\Id
  21. * @ORM\Column(type="integer")
  22. */
  23. protected $value;
  24. }