Rajout de doctrine/orm
[zf2.biz/application_blanche.git] / vendor / doctrine / orm / tests / Doctrine / Tests / Models / Forum / ForumAvatar.php
diff --git a/vendor/doctrine/orm/tests/Doctrine/Tests/Models/Forum/ForumAvatar.php b/vendor/doctrine/orm/tests/Doctrine/Tests/Models/Forum/ForumAvatar.php
new file mode 100644 (file)
index 0000000..ce4e3c3
--- /dev/null
@@ -0,0 +1,17 @@
+<?php
+
+namespace Doctrine\Tests\Models\Forum;
+
+/**
+ * @Entity
+ * @Table(name="forum_avatars")
+ */
+class ForumAvatar
+{
+    /**
+     * @Id
+     * @Column(type="integer")
+     * @GeneratedValue(strategy="AUTO")
+     */
+    public $id;
+}