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.

29 lines
607 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. '尽快送达',
  11. '08:30 - 09:00',
  12. '09:00 - 09:30',
  13. '09:30 - 10:00',
  14. '10:00 - 10:30'
  15. ];
  16. }
  17. public function check()
  18. {
  19. // TODO: Implement check() method.
  20. }
  21. public function undo()
  22. {
  23. // TODO: Implement undo() method.
  24. }
  25. }