ForumAvatar.php 234 B

1234567891011121314151617
  1. <?php
  2. namespace Doctrine\Tests\Models\Forum;
  3. /**
  4. * @Entity
  5. * @Table(name="forum_avatars")
  6. */
  7. class ForumAvatar
  8. {
  9. /**
  10. * @Id
  11. * @Column(type="integer")
  12. * @GeneratedValue(strategy="AUTO")
  13. */
  14. public $id;
  15. }