Commit 1320b7ae authored by Fabien Potencier's avatar Fabien Potencier

added a missing PHPDoc

parent c8bed975
......@@ -78,6 +78,12 @@ class Application extends \Pimple implements HttpKernelInterface, EventSubscribe
});
}
/**
* Registers an extension.
*
* @param ExtensionInterface $extension An ExtensionInterface instance
* @param array $values An array of values that customizes the extension
*/
public function register(ExtensionInterface $extension, array $values = array())
{
foreach ($values as $key => $value) {
......
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