[ticket/13372] Fix require_once CS

PHPBB3-13372
This commit is contained in:
Tristan Darricau 2014-11-25 12:48:48 +01:00
parent fd94027b40
commit f4576c969a

View file

@ -255,7 +255,7 @@ class router implements RouterInterface
$cache->write($dumper->dump($options), $this->get_routes()->getResources()); $cache->write($dumper->dump($options), $this->get_routes()->getResources());
} }
require_once $cache; require_once($cache);
$this->matcher = new \phpbb_url_matcher($this->context); $this->matcher = new \phpbb_url_matcher($this->context);
} }
@ -303,7 +303,7 @@ class router implements RouterInterface
$cache->write($dumper->dump($options), $this->get_routes()->getResources()); $cache->write($dumper->dump($options), $this->get_routes()->getResources());
} }
require_once $cache; require_once($cache);
$this->generator = new \phpbb_url_generator($this->context); $this->generator = new \phpbb_url_generator($this->context);
} }