Commit 6c442081 authored by Fabien Potencier's avatar Fabien Potencier

merged branch igorw/app-parent-constructor (PR #572)

This PR was merged into the master branch.

Commits
-------

44ba6e72 Call parent constructor in app, to initialize pimple

Discussion
----------

Call parent constructor in app, to initialize pimple
parents e18192f7 44ba6e72
......@@ -60,6 +60,8 @@ class Application extends \Pimple implements HttpKernelInterface, TerminableInte
*/
public function __construct(array $values = array())
{
parent::__construct();
$app = $this;
$this['logger'] = null;
......
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