Skip to content

Commit

Permalink
Move the rewrote classes to storage from app.
Browse files Browse the repository at this point in the history
  • Loading branch information
limingxinleo committed Jul 15, 2024
1 parent 45dca29 commit 5ab1e6a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions config/autoload/annotations.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
'mixin',
],
'class_map' => [
Coroutine::class => BASE_PATH . '/app/Kernel/ClassMap/Coroutine.php',
ResolverDispatcher::class => BASE_PATH . '/app/Kernel/ClassMap/ResolverDispatcher.php',
Coroutine::class => BASE_PATH . '/storage/classes/Coroutine.php',
ResolverDispatcher::class => BASE_PATH . '/storage/classes/ResolverDispatcher.php',
],
],
];
18 changes: 9 additions & 9 deletions config/autoload/devtool.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,32 +13,32 @@
'generator' => [
'amqp' => [
'consumer' => [
'namespace' => 'App\\Amqp\\Consumer',
'namespace' => 'App\Amqp\Consumer',
],
'producer' => [
'namespace' => 'App\\Amqp\\Producer',
'namespace' => 'App\Amqp\Producer',
],
],
'aspect' => [
'namespace' => 'App\\Aspect',
'namespace' => 'App\Aspect',
],
'command' => [
'namespace' => 'App\\Command',
'namespace' => 'App\Command',
],
'controller' => [
'namespace' => 'App\\Controller',
'namespace' => 'App\Controller',
],
'job' => [
'namespace' => 'App\\Job',
'namespace' => 'App\Job',
],
'listener' => [
'namespace' => 'App\\Listener',
'namespace' => 'App\Listener',
],
'middleware' => [
'namespace' => 'App\\Middleware',
'namespace' => 'App\Middleware',
],
'Process' => [
'namespace' => 'App\\Processes',
'namespace' => 'App\Processes',
],
],
];
File renamed without changes.
File renamed without changes.

0 comments on commit 5ab1e6a

Please sign in to comment.