when i do a return in an init() function in my bootstrap what does it actually do? so that i can do say a:
$x = $this->bootstrap('something');
oh or isit so that i can do a $this->getResource('something'). if i do not do a return i cannot get the resource later?
also, when i do a $x = $this->bootstrap('something');. i guess that will be before bootstrap() automatically runs? when is that?
when i do a $x = $application->getOption('something'); i am getting the 'something' array from the config? do i actually need to do a $application->getBootstrap()->bootstrap('something') first?