1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/tests/Doctrine/Tests/Models/Routing/RoutingLocation.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;
}
}