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;