Skip to content

Commit e0b6807

Browse files
authored
Format code (#7177)
1 parent 443d907 commit e0b6807

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Diff for: src/Filesystem/Filesystem.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
use Hyperf\Coroutine\Locker;
1919
use Hyperf\Macroable\Macroable;
2020
use Symfony\Component\Finder\Finder;
21+
use Symfony\Component\Finder\SplFileInfo;
2122

2223
/**
2324
* Most of the methods in this file come from illuminate/filesystem,
@@ -360,7 +361,7 @@ public function glob(string $pattern, int $flags = 0): array
360361
/**
361362
* Get an array of all files in a directory.
362363
*
363-
* @return \Symfony\Component\Finder\SplFileInfo[]
364+
* @return SplFileInfo[]
364365
*/
365366
public function files(string $directory, bool $hidden = false): array
366367
{
@@ -372,7 +373,7 @@ public function files(string $directory, bool $hidden = false): array
372373

373374
/**
374375
* Get all of the files from the given directory (recursive).
375-
* @return \Symfony\Component\Finder\SplFileInfo[]
376+
* @return SplFileInfo[]
376377
*/
377378
public function allFiles(string $directory, bool $hidden = false): array
378379
{

0 commit comments

Comments
 (0)