Rajout de doctrine/orm
[zf2.biz/galerie.git] / vendor / doctrine / orm / tests / Doctrine / Tests / Models / Routing / RoutingLocation.php
1 <?php
2
3 namespace Doctrine\Tests\Models\Routing;
4
5 /**
6  * @Entity
7  */
8 class RoutingLocation
9 {
10     /**
11      * @Id @GeneratedValue
12      * @Column(type="integer")
13      */
14     public $id;
15
16     /**
17      * @Column(type="string")
18      */
19     public $name;
20
21     public function getName()
22     {
23         return $this->name;
24     }
25 }