You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

StopsLiteRoutesLiteDbo.php 852B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: robin
  5. * Date: 10/1/16
  6. * Time: 5:39 PM
  7. */
  8. namespace App\Dbo;
  9. use Luticate\Utils\Dbo\LuDbo;
  10. class StopsLiteRoutesLiteDbo extends LuDbo
  11. {
  12. /**
  13. * @var $_stopId string
  14. */
  15. protected $_stopId;
  16. /**
  17. * @var $_routeId string
  18. */
  19. protected $_routeId;
  20. /**
  21. * @return string
  22. */
  23. public function getStopId(): string
  24. {
  25. return $this->_stopId;
  26. }
  27. /**
  28. * @param string $stopId
  29. */
  30. public function setStopId(string $stopId)
  31. {
  32. $this->_stopId = $stopId;
  33. }
  34. /**
  35. * @return string
  36. */
  37. public function getRouteId(): string
  38. {
  39. return $this->_routeId;
  40. }
  41. /**
  42. * @param string $routeId
  43. */
  44. public function setRouteId(string $routeId)
  45. {
  46. $this->_routeId = $routeId;
  47. }
  48. }