File tree 1 file changed +8
-12
lines changed
1 file changed +8
-12
lines changed Original file line number Diff line number Diff line change @@ -31,23 +31,19 @@ class Finder implements \IteratorAggregate, \Countable
31
31
/** @var callable extension methods */
32
32
private static $ extMethods = [];
33
33
34
- /** @var array */
35
- private $ paths = [];
34
+ private array $ paths = [];
36
35
37
- /** @var array of filters */
38
- private $ groups = [];
36
+ /** filters */
37
+ private array $ groups = [];
39
38
40
- /** @var array filter for recursive traversing */
41
- private $ exclude = [];
39
+ /** filter for recursive traversing */
40
+ private array $ exclude = [];
42
41
43
- /** @var int */
44
- private $ order = RecursiveIteratorIterator::SELF_FIRST ;
42
+ private int $ order = RecursiveIteratorIterator::SELF_FIRST ;
45
43
46
- /** @var int */
47
- private $ maxDepth = -1 ;
44
+ private int $ maxDepth = -1 ;
48
45
49
- /** @var array */
50
- private $ cursor ;
46
+ private ?array $ cursor ;
51
47
52
48
53
49
/**
You can’t perform that action at this time.
0 commit comments