fixed file helper docs about ordering in findFiles()

fixes #12546
This commit is contained in:
Carsten Brandt
2016-09-16 09:45:09 +02:00
parent dae4392ba6
commit 740a97de49

View File

@@ -384,7 +384,7 @@ class BaseFileHelper
* If a file path matches a pattern in both `only` and `except`, it will NOT be returned.
* - `caseSensitive`: boolean, whether patterns specified at `only` or `except` should be case sensitive. Defaults to `true`.
* - `recursive`: boolean, whether the files under the subdirectories should also be looked for. Defaults to `true`.
* @return array files found under the directory. The file list is sorted.
* @return array files found under the directory, in no particular order. Ordering depends on the files system used.
* @throws InvalidParamException if the dir is invalid.
*/
public static function findFiles($dir, $options = [])