Skip to content

Commit

Permalink
Updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
PHLAK committed May 7, 2020
1 parent 8127f54 commit 95c93ae
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,12 @@ Get a list of files in a directory by a glob pattern.

```php
Glob::pattern('**.txt')->in('some/file/path');

// Returns a Symfony Finder instance containing files matching the glob
// pattern. (e.g. 'foo.txt', 'foo/bar.txt', 'foo/bar/baz.txt', etc.)
```

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.).

---

### Exact Match
Expand Down

0 comments on commit 95c93ae

Please sign in to comment.