123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- namespace JMS\Serializer\Tests\Fixtures\Doctrine\SingleTableInheritance;
- use Doctrine\Common\Collections\ArrayCollection;
- use Doctrine\ORM\Mapping as ORM;
- /**
- * @ORM\Entity
- */
- class Clazz extends AbstractModel
- {
- /** @ORM\Id @ORM\GeneratedValue(strategy = "AUTO") @ORM\Column(type = "integer") */
- private $id;
- /** @ORM\ManyToOne(targetEntity = "JMS\Serializer\Tests\Fixtures\Doctrine\SingleTableInheritance\Teacher") */
- private $teacher;
- /** @ORM\ManyToMany(targetEntity = "JMS\Serializer\Tests\Fixtures\Doctrine\SingleTableInheritance\Student") */
- private $students;
- public function __construct(Teacher $teacher, array $students)
- {
- $this->teacher = $teacher;
- $this->students = new ArrayCollection($students);
- }
- public function getId()
- {
- return $this->id;
- }
- public function getTeacher()
- {
- return $this->teacher;
- }
- public function getStudents()
- {
- return $this->students;
- }
- }
|