mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-24 04:08:51 +00:00
[ticket/13372] Fix require_once CS
PHPBB3-13372
This commit is contained in:
parent
fd94027b40
commit
f4576c969a
1 changed files with 2 additions and 2 deletions
|
@ -255,7 +255,7 @@ class router implements RouterInterface
|
|||
$cache->write($dumper->dump($options), $this->get_routes()->getResources());
|
||||
}
|
||||
|
||||
require_once $cache;
|
||||
require_once($cache);
|
||||
|
||||
$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());
|
||||
}
|
||||
|
||||
require_once $cache;
|
||||
require_once($cache);
|
||||
|
||||
$this->generator = new \phpbb_url_generator($this->context);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue