diff --git a/docs/book/v1/component/module.md b/docs/book/v1/component/module.md index e818bb8..f8d1dfc 100644 --- a/docs/book/v1/component/module.md +++ b/docs/book/v1/component/module.md @@ -334,13 +334,13 @@ Once the Module is created, `dot-maker` will display a list of tasks that need t Next steps: =========== - add to config/config.php: - \\ConfigProvider, + \\ConfigProvider::class, - add to config/config.php: - Core\\ConfigProvider, + Core\\ConfigProvider::class, - add to config/autoload/cli.global.php under dot_cli.commands: \\Command\Command::getDefaultName() => \\Command\Command::class, - add to config/pipeline.php: - $app->pipe(\\Middleware\Middleware); + $app->pipe(\\Middleware\Middleware::class); - add to config/autoload/authorization.global.php (OR config/autoload/authorization-guards.global.php) the routes registered in /path/to/project/src//src/RoutesDelegator.php - add to composer.json under autoload.psr-4: