Skip to content
Snippets Groups Projects
Commit b0238ecf authored by Tim van Dijen's avatar Tim van Dijen
Browse files

Fix use before initialization

parent 853206ef
No related branches found
No related tags found
No related merge requests found
......@@ -175,10 +175,10 @@ class Template extends Response
$this->controller = new $controller();
}
$this->fileSystem = new Filesystem();
$this->twig = $this->setupTwig();
$this->charset = 'UTF-8';
$this->fileSystem = new Filesystem();
parent::__construct();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment