Skip to content

Commit c38e5c4

Browse files
committed
fixed CS in generated files
1 parent 60a9b25 commit c38e5c4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Tests/Iterator/PathFilterIteratorTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,15 +68,15 @@ public function getTestFilterData()
6868
[$inner, ['/^A/'], [], ['abc.dat', 'ab.dat', 'a.dat']],
6969
[$inner, ['/^A\/B/'], [], ['abc.dat', 'ab.dat']],
7070
[$inner, ['/^A\/B\/C/'], [], ['abc.dat']],
71-
[$inner, ['/A\/B\/C/'], [], ['abc.dat', 'abc.dat.copy']],
71+
[$inner, ['/A\/B\/C/'], array (), ['abc.dat', 'abc.dat.copy']],
7272

7373
[$inner, ['A'], [], ['abc.dat', 'ab.dat', 'a.dat', 'abc.dat.copy', 'ab.dat.copy', 'a.dat.copy']],
7474
[$inner, ['A/B'], [], ['abc.dat', 'ab.dat', 'abc.dat.copy', 'ab.dat.copy']],
75-
[$inner, ['A/B/C'], [], ['abc.dat', 'abc.dat.copy']],
75+
[$inner, ['A/B/C'], array (), ['abc.dat', 'abc.dat.copy']],
7676

7777
[$inner, ['copy/A'], [], ['abc.dat.copy', 'ab.dat.copy', 'a.dat.copy']],
7878
[$inner, ['copy/A/B'], [], ['abc.dat.copy', 'ab.dat.copy']],
79-
[$inner, ['copy/A/B/C'], [], ['abc.dat.copy']],
79+
[$inner, ['copy/A/B/C'], array (), ['abc.dat.copy']],
8080
];
8181
}
8282
}

0 commit comments

Comments
 (0)