Commit 5c29361d authored by Fabien Potencier's avatar Fabien Potencier

added a missing PHPDoc

parent 788d41c0
......@@ -178,6 +178,12 @@ class Application extends \Pimple implements HttpKernelInterface, EventSubscribe
$provider->register($this);
}
/**
* Boots all service providers.
*
* This method is automatically called by handle(), but you can use it
* to boot all service providers when not handling a request.
*/
public function boot()
{
if (!$this->booted) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment