From 498ffa0cf80c57b6096d5873f55633429853738f Mon Sep 17 00:00:00 2001 From: chris Date: Fri, 28 Aug 2015 13:17:52 -0400 Subject: [PATCH] Updated config path typos. --- doc/book/usage-examples.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/book/usage-examples.md b/doc/book/usage-examples.md index 016bf93c..80403767 100644 --- a/doc/book/usage-examples.md +++ b/doc/book/usage-examples.md @@ -275,7 +275,7 @@ return ConfigFactory::fromFiles( ); ``` -In `config/global.php`, place the following: +In `config/autoload/global.php`, place the following: ```php return [ @@ -311,7 +311,7 @@ In `config/autoload/dependencies.global.php`, place the following: [ - 'config' => include __DIR__ . '/config.php', + 'config' => include __DIR__ . '/../config.php', ], 'invokables' => [ 'Application\HelloWorld' => 'Application\HelloWorld',