21 lines
272 B
PHP
21 lines
272 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;
|
||
|
}
|