SystemService.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CatchAdmin [Just Like ~ ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
  8. // +----------------------------------------------------------------------
  9. // | Author: JaguarJack [ njphper@gmail.com ]
  10. // +----------------------------------------------------------------------
  11. namespace catchAdmin\system;
  12. use catchAdmin\system\events\AttachmentEvent;
  13. use catcher\command\MigrateRunCommand;
  14. use catcher\command\SeedRunCommand;
  15. use catcher\ModuleService;
  16. class SystemService extends ModuleService
  17. {
  18. public function loadRouteFrom()
  19. {
  20. // TODO: Implement loadRouteFrom() method.
  21. return __DIR__ . DIRECTORY_SEPARATOR . 'route.php';
  22. }
  23. public function loadEvents()
  24. {
  25. return [
  26. 'attachment' => [ AttachmentEvent::class ],
  27. ];
  28. }
  29. protected function registerCommands()
  30. {
  31. $this->commands([
  32. MigrateRunCommand::class,
  33. SeedRunCommand::class,
  34. ]);
  35. }
  36. }