1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-08 00:25:19 +02:00

[feature/extension-manager] Clarify class finding method docblock

PHPBB3-10323
This commit is contained in:
Nils Adermann 2011-11-18 13:14:15 +01:00
parent 7ee9a07179
commit ef33bd72d0

View File

@ -196,10 +196,13 @@ class phpbb_extension_finder
}
/**
* Finds auto loadable php classes matching the configured options.
* Finds classes matching the configured options if they follow phpBB naming rules.
*
* The php file extension is automatically added to suffixes.
*
* Note: If a file is matched but contains a class name not following the
* phpBB naming rules an incorrect class name will be returned.
*
* @param bool $cache Whether the result should be cached
* @return array An array of found class names
*/