diff --git a/doc/book/quick-start-skeleton.md b/doc/book/quick-start-skeleton.md index a69f93ab..4441c104 100644 --- a/doc/book/quick-start-skeleton.md +++ b/doc/book/quick-start-skeleton.md @@ -217,7 +217,7 @@ class HelloActionFactory ``` With that in place, we'll now update our configuration. Open the file -`config/autoload/dependencies.global.php`; it should have a structure similar to +`config/autoload/routes.global.php`; it should have a structure similar to the following: ```php @@ -226,9 +226,9 @@ return [ 'invokables' => [ /* ... */ ], - 'factories' => [ - /* ... */ - ], + ], + 'routes' => [ + /* ... */ ], ]; ``` @@ -245,6 +245,9 @@ return [ App\Action\HelloAction::class => App\Action\HelloActionFactory::class, ], ], + 'routes' => [ + /* ... */ + ], ]; ```