From dd2c4aa61f3c327a43ee4aeb669a8c0eabdd9dc4 Mon Sep 17 00:00:00 2001 From: Drak Date: Thu, 16 Feb 2012 08:34:09 +0545 Subject: [PATCH] [HttpFoundation] Documentation. --- src/Symfony/Component/HttpFoundation/README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/Symfony/Component/HttpFoundation/README.md b/src/Symfony/Component/HttpFoundation/README.md index 67823e7f70..88adfed759 100644 --- a/src/Symfony/Component/HttpFoundation/README.md +++ b/src/Symfony/Component/HttpFoundation/README.md @@ -28,6 +28,17 @@ And here is how to create and send a Response: The Request and the Response classes have many other methods that implement the HTTP specification. +Loading +------- + +If you are using PHP 5.3.x you must add the following to your autoloader: + + // SessionHandlerInterface + if (!interface_exists('SessionHandlerInterface')) { + $loader->registerPrefixFallback(__DIR__.'/../vendor/symfony/src/Symfony/Component/HttpFoundation/Resources/stubs'); + } + + Resources ---------