Commit 44ba6e72 authored by Igor Wiedler's avatar Igor Wiedler

Call parent constructor in app, to initialize pimple

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