diff --git a/guide/kohana/upgrading.md b/guide/kohana/upgrading.md index fcd9de800..74c181eed 100644 --- a/guide/kohana/upgrading.md +++ b/guide/kohana/upgrading.md @@ -59,4 +59,8 @@ The cookie class now throws an exception if there isn't a salt set, and no salt If for some reason you are overloading your controller's constructor, it has changed to: - public function __construct(Request $request, Response $response) \ No newline at end of file + public function __construct(Request $request, Response $response) + +## index.php / bootstrap.php changes + +The main change here is that the request execution has been removed from bootstrap.php and moved to index.php. This allows you to use one bootstrap when doing testing. The reason for this change is that the bootstrap should only setup the environment. It shouldn't run it. \ No newline at end of file