TestEntity.php 803 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. namespace Ddeboer\DataImport\Tests\Fixtures\Entity;
  3. class TestEntity
  4. {
  5. private $firstProperty;
  6. private $secondProperty;
  7. private $firstAssociation;
  8. public function getFirstProperty()
  9. {
  10. return $this->firstProperty;
  11. }
  12. public function setFirstProperty($firstProperty)
  13. {
  14. $this->firstProperty = $firstProperty;
  15. }
  16. public function getSecondProperty()
  17. {
  18. return $this->secondProperty;
  19. }
  20. public function setSecondProperty($secondProperty)
  21. {
  22. $this->secondProperty = $secondProperty;
  23. }
  24. public function getFirstAssociation()
  25. {
  26. return $this->firstAssociation;
  27. }
  28. public function setFirstAssociation($firstAssociation)
  29. {
  30. $this->firstAssociation = $firstAssociation;
  31. }
  32. }