Skip to content

Commit e9092a9

Browse files
committed
Fix PHPStan error
1 parent 8c455a9 commit e9092a9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Factory.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ final class Factory
3535
* @phpstan-var array{
3636
* cacheFile: string,
3737
* customFixers: iterable<\PhpCsFixer\Fixer\FixerInterface>,
38-
* finder: \PhpCsFixer\Finder|iterable<string>,
38+
* finder: \PhpCsFixer\Finder|iterable<\SplFileInfo>,
3939
* format: string,
4040
* hideProgress: bool,
4141
* indent: string,
@@ -52,7 +52,7 @@ final class Factory
5252
* @param array{
5353
* cacheFile: string,
5454
* customFixers: iterable<\PhpCsFixer\Fixer\FixerInterface>,
55-
* finder: \PhpCsFixer\Finder|iterable<string>,
55+
* finder: \PhpCsFixer\Finder|iterable<\SplFileInfo>,
5656
* format: string,
5757
* hideProgress: bool,
5858
* indent: string,
@@ -77,7 +77,7 @@ private function __construct(RulesetInterface $ruleset, array $options)
7777
* @param array{
7878
* cacheFile?: string,
7979
* customFixers?: iterable<\PhpCsFixer\Fixer\FixerInterface>,
80-
* finder?: \PhpCsFixer\Finder|iterable<string>,
80+
* finder?: \PhpCsFixer\Finder|iterable<\SplFileInfo>,
8181
* format?: string,
8282
* hideProgress?: bool,
8383
* indent?: string,

0 commit comments

Comments
 (0)