devtool.php 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * This file is part of Hyperf.
  5. *
  6. * @link https://www.hyperf.io
  7. * @document https://hyperf.wiki
  8. * @contact group@hyperf.io
  9. * @license https://github.com/hyperf/hyperf/blob/master/LICENSE
  10. */
  11. return [
  12. 'generator' => [
  13. 'amqp' => [
  14. 'consumer' => [
  15. 'namespace' => 'App\\Amqp\\Consumer',
  16. ],
  17. 'producer' => [
  18. 'namespace' => 'App\\Amqp\\Producer',
  19. ],
  20. ],
  21. 'aspect' => [
  22. 'namespace' => 'App\\Aspect',
  23. ],
  24. 'command' => [
  25. 'namespace' => 'App\\Command',
  26. ],
  27. 'controller' => [
  28. 'namespace' => 'App\\Controller',
  29. ],
  30. 'job' => [
  31. 'namespace' => 'App\\Job',
  32. ],
  33. 'listener' => [
  34. 'namespace' => 'App\\Listener',
  35. ],
  36. 'middleware' => [
  37. 'namespace' => 'App\\Middleware',
  38. ],
  39. 'Process' => [
  40. 'namespace' => 'App\\Processes',
  41. ],
  42. ],
  43. ];