We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8127f54 commit 95c93aeCopy full SHA for 95c93ae
README.md
@@ -60,11 +60,12 @@ Get a list of files in a directory by a glob pattern.
60
61
```php
62
Glob::pattern('**.txt')->in('some/file/path');
63
-
64
- // Returns a Symfony Finder instance containing files matching the glob
65
- // pattern. (e.g. 'foo.txt', 'foo/bar.txt', 'foo/bar/baz.txt', etc.)
66
```
67
+Returns a [Symfony Finder Component](https://symfony.com/doc/current/components/finder.html)
+containing the files matching the glob pattern within the specified directory
+(e.g. `foo.txt`, `foo/bar.txt`, `foo/bar/baz.txt`, etc.).
68
+
69
---
70
71
### Exact Match
0 commit comments