ZF-6387: Zend_Application Quick Start shows invalid index.php example
Description
the last lines of the example index.php shown in the quickstart shows the following::
$application->bootstrap();
->run();
I assume it should be
$application->bootstrap(); $application->run();
unless it is supposed to use fluent interface, which the bootstrap() method does not seem to.
Comments
Posted by Matthew Weier O'Phinney (matthew) on 2009-04-23T09:00:11.000+0000
Actually, it does implement a fluent interface. I'm updating the docs now, and they will release with the 1.8 GA.
Posted by Matthew Weier O'Phinney (matthew) on 2009-04-23T09:03:43.000+0000
Fixed in trunk and patched to 1.8 release branch.