diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-11-21 08:26:19 +0100 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-11-21 08:26:19 +0100 |
commit | f5c5f7df755dd930fef4de6f62e42d4a2a54219e (patch) | |
tree | 272bf6ddbf987b23557c4ebf7e615f38509994f4 /phpBB/phpbb/routing | |
parent | 677b5b2cd4937ee6c777728082084c661223dee8 (diff) | |
download | forums-f5c5f7df755dd930fef4de6f62e42d4a2a54219e.tar forums-f5c5f7df755dd930fef4de6f62e42d4a2a54219e.tar.gz forums-f5c5f7df755dd930fef4de6f62e42d4a2a54219e.tar.bz2 forums-f5c5f7df755dd930fef4de6f62e42d4a2a54219e.tar.xz forums-f5c5f7df755dd930fef4de6f62e42d4a2a54219e.zip |
[ticket/12620] Fix functionnal tests
PHPBB3-12620
Diffstat (limited to 'phpBB/phpbb/routing')
-rw-r--r-- | phpBB/phpbb/routing/router.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/phpBB/phpbb/routing/router.php b/phpBB/phpbb/routing/router.php index 0617e94c93..1003708540 100644 --- a/phpBB/phpbb/routing/router.php +++ b/phpBB/phpbb/routing/router.php @@ -107,7 +107,7 @@ class router implements RouterInterface * Find the list of routing files * * @param array $paths Array of paths where to look for routing files. - * @return null + * @return router */ public function find_routing_files(array $paths) { @@ -130,6 +130,8 @@ class router implements RouterInterface } } } + + return $this; } /** |