@@ -72,7 +72,7 @@ public function testGroupFilters(array $expectedGroupsToRun, $group = null, $exc
7272 }
7373
7474 // No expected lock data, means we should never call it
75- if (empty ($ expectedLockData )){
75+ if (empty ($ expectedLockData )) {
7676 $ lockManager ->expects ($ this ->never ())
7777 ->method ('lock ' );
7878 }
@@ -132,7 +132,9 @@ public function groupFiltersDataProvider(): array
132132 ['default ' ], // --exclude-group default
133133 ],
134134 '--exclude-group=index, all other groups should run ' => [
135- array_filter ($ listOfGroups , function ($ g ) { return $ g !== 'index ' ; }), // groups to run, all but index
135+ array_filter ($ listOfGroups , function ($ g ) {
136+ return $ g !== 'index ' ;
137+ }), // groups to run, all but index
136138 null , //
137139 ['index ' ] // --exclude-group index
138140 ],
@@ -142,9 +144,13 @@ public function groupFiltersDataProvider(): array
142144 $ listOfGroups // groups to exclude, all of them
143145 ],
144146 'exclude all groups but consumers, consumers runs ' => [
145- array_filter ($ listOfGroups , function ($ g ) { return $ g === 'consumers ' ; }),
147+ array_filter ($ listOfGroups , function ($ g ) {
148+ return $ g === 'consumers ' ;
149+ }),
146150 null ,
147- array_filter ($ listOfGroups , function ($ g ) { return $ g !== 'consumers ' ; })
151+ array_filter ($ listOfGroups , function ($ g ) {
152+ return $ g !== 'consumers ' ;
153+ })
148154 ],
149155 ];
150156 }
0 commit comments