RoutingLocation.php 319B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace Doctrine\Tests\Models\Routing;
  3. /**
  4. * @Entity
  5. */
  6. class RoutingLocation
  7. {
  8. /**
  9. * @Id @GeneratedValue
  10. * @Column(type="integer")
  11. */
  12. public $id;
  13. /**
  14. * @Column(type="string")
  15. */
  16. public $name;
  17. public function getName()
  18. {
  19. return $this->name;
  20. }
  21. }