Rajout de doctrine/orm
[zf2.biz/application_blanche.git] / vendor / doctrine / orm / tests / Doctrine / Tests / Models / Routing / RoutingLocation.php
diff --git a/vendor/doctrine/orm/tests/Doctrine/Tests/Models/Routing/RoutingLocation.php b/vendor/doctrine/orm/tests/Doctrine/Tests/Models/Routing/RoutingLocation.php
new file mode 100644 (file)
index 0000000..ea1ba55
--- /dev/null
@@ -0,0 +1,25 @@
+<?php
+
+namespace Doctrine\Tests\Models\Routing;
+
+/**
+ * @Entity
+ */
+class RoutingLocation
+{
+    /**
+     * @Id @GeneratedValue
+     * @Column(type="integer")
+     */
+    public $id;
+
+    /**
+     * @Column(type="string")
+     */
+    public $name;
+
+    public function getName()
+    {
+        return $this->name;
+    }
+}
\ No newline at end of file