diff options
author | n-aleha <nick_aleha@myway.com> | 2014-08-07 13:19:49 +0300 |
---|---|---|
committer | n-aleha <nick_aleha@myway.com> | 2014-08-07 13:19:49 +0300 |
commit | 80067467805d4b1664777cf3553c39fc32cfdb65 (patch) | |
tree | da8748acc232072a93c91c762bab5c28491b07c9 /phpBB/includes/functions_url_matcher.php | |
parent | 9133b913ec2184e56f1ea420820e45f4208f753d (diff) | |
download | forums-80067467805d4b1664777cf3553c39fc32cfdb65.tar forums-80067467805d4b1664777cf3553c39fc32cfdb65.tar.gz forums-80067467805d4b1664777cf3553c39fc32cfdb65.tar.bz2 forums-80067467805d4b1664777cf3553c39fc32cfdb65.tar.xz forums-80067467805d4b1664777cf3553c39fc32cfdb65.zip |
[ticket/12557] Fix php file description
PHPBB3-12557
Diffstat (limited to 'phpBB/includes/functions_url_matcher.php')
-rw-r--r-- | phpBB/includes/functions_url_matcher.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/includes/functions_url_matcher.php b/phpBB/includes/functions_url_matcher.php index 7e17d1c2d8..b965046aad 100644 --- a/phpBB/includes/functions_url_matcher.php +++ b/phpBB/includes/functions_url_matcher.php @@ -29,7 +29,7 @@ if (!defined('IN_PHPBB')) * @param \phpbb\extension\manager $manager Extension manager * @param RequestContext $context Symfony RequestContext object * @param string $root_path Root path -* @param string $php_ext PHP extension +* @param string $php_ext PHP file extension * @return null */ function phpbb_get_url_matcher(\phpbb\extension\manager $manager, RequestContext $context, $root_path, $php_ext) @@ -52,7 +52,7 @@ function phpbb_get_url_matcher(\phpbb\extension\manager $manager, RequestContext * * @param \phpbb\extension\manager $manager Extension manager * @param string $root_path Root path -* @param string $php_ext PHP extension +* @param string $php_ext PHP file extension * @return null */ function phpbb_create_dumped_url_matcher(\phpbb\extension\manager $manager, $root_path, $php_ext) @@ -88,7 +88,7 @@ function phpbb_create_url_matcher(\phpbb\extension\manager $manager, RequestCont * * @param RequestContext $context Symfony RequestContext object * @param string $root_path Root path -* @param string $php_ext PHP extension +* @param string $php_ext PHP file extension * @return phpbb_url_matcher */ function phpbb_load_url_matcher(RequestContext $context, $root_path, $php_ext) @@ -103,7 +103,7 @@ function phpbb_load_url_matcher(RequestContext $context, $root_path, $php_ext) * The class is automatically dumped to the cache directory * * @param string $root_path Root path -* @param string $php_ext PHP extension +* @param string $php_ext PHP file extension * @return bool True if it exists, false if not */ function phpbb_url_matcher_dumped($root_path, $php_ext) |