Skip to content

Commit

Permalink
Fixed typo in BaseFileHelper::findFiles() docs (yiisoft#14200) [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
corpsepk authored and samdark committed May 24, 2017
1 parent 273c33d commit ac70262
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/helpers/BaseFileHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ public static function removeDirectory($dir, $options = [])
* If the pattern does not contain a slash (`/`), it is treated as a shell glob pattern
* and checked for a match against the pathname relative to `$dir`.
* Otherwise, the pattern is treated as a shell glob suitable for consumption by `fnmatch(3)`
* `with the `FNM_PATHNAME` flag: wildcards in the pattern will not match a `/` in the pathname.
* with the `FNM_PATHNAME` flag: wildcards in the pattern will not match a `/` in the pathname.
* For example, `views/*.php` matches `views/index.php` but not `views/controller/index.php`.
* A leading slash matches the beginning of the pathname. For example, `/*.php` matches `index.php` but not `views/start/index.php`.
* An optional prefix `!` which negates the pattern; any matching file excluded by a previous pattern will become included again.
Expand Down

0 comments on commit ac70262

Please sign in to comment.