vendor/doctrine-fixtures/tests/Doctrine/Tests/Common/DataFixtures/TestEntity/Role.php
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/vendor/doctrine-fixtures/tests/Doctrine/Tests/Common/DataFixtures/TestEntity/Role.php Wed Dec 14 23:28:58 2011 +0100
@@ -0,0 +1,36 @@
+<?php
+
+namespace Doctrine\Tests\Common\DataFixtures\TestEntity;
+
+/**
+ * @Entity
+ */
+class Role
+{
+ /**
+ * @Column(type="integer")
+ * @Id
+ * @GeneratedValue(strategy="IDENTITY")
+ */
+ private $id;
+
+ /**
+ * @Column(length=50)
+ */
+ private $name;
+
+ public function getId()
+ {
+ return $this->id;
+ }
+
+ public function setName($name)
+ {
+ $this->name = $name;
+ }
+
+ public function getName()
+ {
+ return $this->name;
+ }
+}
\ No newline at end of file