We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b910bf commit 50a4824Copy full SHA for 50a4824
Tests/Iterator/PathFilterIteratorTest.php
@@ -68,15 +68,15 @@ public function getTestFilterData()
68
[$inner, ['/^A/'], [], ['abc.dat', 'ab.dat', 'a.dat']],
69
[$inner, ['/^A\/B/'], [], ['abc.dat', 'ab.dat']],
70
[$inner, ['/^A\/B\/C/'], [], ['abc.dat']],
71
- [$inner, ['/A\/B\/C/'], array (), ['abc.dat', 'abc.dat.copy']],
+ [$inner, ['/A\/B\/C/'], [], ['abc.dat', 'abc.dat.copy']],
72
73
[$inner, ['A'], [], ['abc.dat', 'ab.dat', 'a.dat', 'abc.dat.copy', 'ab.dat.copy', 'a.dat.copy']],
74
[$inner, ['A/B'], [], ['abc.dat', 'ab.dat', 'abc.dat.copy', 'ab.dat.copy']],
75
- [$inner, ['A/B/C'], array (), ['abc.dat', 'abc.dat.copy']],
+ [$inner, ['A/B/C'], [], ['abc.dat', 'abc.dat.copy']],
76
77
[$inner, ['copy/A'], [], ['abc.dat.copy', 'ab.dat.copy', 'a.dat.copy']],
78
[$inner, ['copy/A/B'], [], ['abc.dat.copy', 'ab.dat.copy']],
79
- [$inner, ['copy/A/B/C'], array (), ['abc.dat.copy']],
+ [$inner, ['copy/A/B/C'], [], ['abc.dat.copy']],
80
];
81
}
82
0 commit comments