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.

28 lines
579 B

  1. <?php
  2. namespace App\Service\v3\Implementations;
  3. use App\Service\v3\Interfaces\AppointmentTimeServiceInterface;
  4. use phpDocumentor\Reflection\Types\Object_;
  5. class AppointmentTimeService implements AppointmentTimeServiceInterface
  6. {
  7. public function do()
  8. {
  9. return [
  10. '08:30 - 09:00',
  11. '09:00 - 09:30',
  12. '09:30 - 10:00',
  13. '10:00 - 10:30'
  14. ];
  15. }
  16. public function check()
  17. {
  18. // TODO: Implement check() method.
  19. }
  20. public function undo()
  21. {
  22. // TODO: Implement undo() method.
  23. }
  24. }