aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/routing
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-11-21 08:26:19 +0100
committerTristan Darricau <github@nicofuma.fr>2014-11-21 08:26:19 +0100
commitf5c5f7df755dd930fef4de6f62e42d4a2a54219e (patch)
tree272bf6ddbf987b23557c4ebf7e615f38509994f4 /phpBB/phpbb/routing
parent677b5b2cd4937ee6c777728082084c661223dee8 (diff)
downloadforums-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.php4
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;
}
/**