26 lines
343 B
PHP
26 lines
343 B
PHP
<?php
|
|
|
|
namespace Doctrine\Tests\Models\Routing;
|
|
|
|
/**
|
|
* @Entity
|
|
*/
|
|
class RoutingLocation
|
|
{
|
|
/**
|
|
* @Id
|
|
* @generatedValue(strategy="AUTO")
|
|
* @Column(type="integer")
|
|
*/
|
|
public $id;
|
|
|
|
/**
|
|
* @Column(type="string")
|
|
*/
|
|
public $name;
|
|
|
|
public function getName()
|
|
{
|
|
return $this->name;
|
|
}
|
|
} |