From d54233080f86c0859313164b372ccef776f8fe84 Mon Sep 17 00:00:00 2001 From: Patrick Date: Tue, 16 Sep 2014 21:14:29 +0200 Subject: [PATCH] prepared DI part and navigation --- 6-controllers.md | 4 ++-- 7-dependency-injection.md | 5 +++++ README.md | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 7-dependency-injection.md diff --git a/6-controllers.md b/6-controllers.md index a9b534d..1c0cb60 100644 --- a/6-controllers.md +++ b/6-controllers.md @@ -1,4 +1,4 @@ -[<< previous](5-router.md) +[<< previous](5-router.md) | [next >>](7-dependency-injection.md) ### Controllers @@ -52,4 +52,4 @@ So instead of just calling a handler method you are now instantiating the contro Now if you visit `http://localhost:8000/hello-world` everything should work. If not, go back and debug. And of course don't forget to commit your changes. -to be continued... +[<< previous](5-router.md) | [next >>](7-dependency-injection.md) diff --git a/7-dependency-injection.md b/7-dependency-injection.md new file mode 100644 index 0000000..530724d --- /dev/null +++ b/7-dependency-injection.md @@ -0,0 +1,5 @@ +[<< previous](5-router.md) | [next >>](7-dependency-injection.md) + +### Dependency Injection + +to be continued... \ No newline at end of file diff --git a/README.md b/README.md index c59e4ef..ee3483f 100644 --- a/README.md +++ b/README.md @@ -20,4 +20,4 @@ So let's get started right away with the [first part](1-front-controller.md). 4. [HTTP](4-http.md) 5. [Router](5-router.md) 6. [Controllers](6-controllers.md) -7. Dependency Injector +7. [Dependency Injection](7-dependency-injection.md)