2010-01-31 17:35:10 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Doctrine\Tests\Models\Routing;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Entity
|
|
|
|
*/
|
|
|
|
class RoutingLocation
|
|
|
|
{
|
|
|
|
/**
|
2010-04-10 02:00:36 +04:00
|
|
|
* @Id @GeneratedValue
|
2010-01-31 17:35:10 +03:00
|
|
|
* @Column(type="integer")
|
|
|
|
*/
|
|
|
|
public $id;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Column(type="string")
|
|
|
|
*/
|
|
|
|
public $name;
|
2010-02-15 00:21:43 +03:00
|
|
|
|
|
|
|
public function getName()
|
|
|
|
{
|
|
|
|
return $this->name;
|
|
|
|
}
|
2010-01-31 17:35:10 +03:00
|
|
|
}
|