From 04716b0a58f16d6a0bd98678cb2fc340d03d4825 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Tue, 12 Jan 2010 21:22:03 +0200 Subject: [PATCH] updated readme --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f6970de..99ec431 100644 --- a/README.md +++ b/README.md @@ -49,9 +49,10 @@ The second type I'm calling "Middleware Classes", they basically determine if th A "Middleware Class" works just like the hello world example above, except it also needs a `__construct` class. When each class on the stack are initialized, they are passed the initialized object of the stack item after itself. This allows the `call` method to use `$this->app->call($env);` to pass on execution to the next stack item. -Bellow is a simple Middleware class example: +Bellow is a simple Middleware class example, which builds on to the hello world example from above. app =& $app;