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
505 B

5 years ago
  1. <?php
  2. namespace App\Service\v3\Implementations;
  3. use App\Service\v3\Interfaces\StoreInfoServiceInterface;
  4. use App\Model\v3\Store;
  5. class StoreInfoService implements StoreInfoServiceInterface
  6. {
  7. public function do()
  8. {
  9. // TODO: Implement do() method.
  10. }
  11. public function check()
  12. {
  13. }
  14. public function undo()
  15. {
  16. // TODO: Implement undo() method.
  17. }
  18. public function detail()
  19. {
  20. return Store::query()->where('id',1)->first()->toArray();
  21. }
  22. }