Skip to content

Commit

Permalink
Format code (#7177)
Browse files Browse the repository at this point in the history
  • Loading branch information
limingxinleo authored Nov 28, 2024
1 parent 443d907 commit e0b6807
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Filesystem/Filesystem.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
use Hyperf\Coroutine\Locker;
use Hyperf\Macroable\Macroable;
use Symfony\Component\Finder\Finder;
use Symfony\Component\Finder\SplFileInfo;

/**
* Most of the methods in this file come from illuminate/filesystem,
Expand Down Expand Up @@ -360,7 +361,7 @@ public function glob(string $pattern, int $flags = 0): array
/**
* Get an array of all files in a directory.
*
* @return \Symfony\Component\Finder\SplFileInfo[]
* @return SplFileInfo[]
*/
public function files(string $directory, bool $hidden = false): array
{
Expand All @@ -372,7 +373,7 @@ public function files(string $directory, bool $hidden = false): array

/**
* Get all of the files from the given directory (recursive).
* @return \Symfony\Component\Finder\SplFileInfo[]
* @return SplFileInfo[]
*/
public function allFiles(string $directory, bool $hidden = false): array
{
Expand Down

0 comments on commit e0b6807

Please sign in to comment.