LastInsertId.php 351 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. namespace Doctrine\DBAL\Driver\SQLSrv;
  3. /**
  4. * Last Id Data Container.
  5. */
  6. class LastInsertId
  7. {
  8. /** @var int */
  9. private $id;
  10. /**
  11. * @param int $id
  12. */
  13. public function setId($id)
  14. {
  15. $this->id = $id;
  16. }
  17. /**
  18. * @return int
  19. */
  20. public function getId()
  21. {
  22. return $this->id;
  23. }
  24. }