@@ -347,7 +347,8 @@ public function testResolvePathWithFileThatIsExcludedDirectlyOverridePathMode()
347347 $ config = new Config ();
348348 $ config ->getFinder ()
349349 ->in (__DIR__ )
350- ->notPath (basename (__FILE__ ));
350+ ->notPath (basename (__FILE__ ))
351+ ;
351352
352353 $ resolver = $ this ->createConfigurationResolver (
353354 ['path ' => [__FILE__ ]],
@@ -362,7 +363,8 @@ public function testResolvePathWithFileThatIsExcludedDirectlyIntersectionPathMod
362363 $ config = new Config ();
363364 $ config ->getFinder ()
364365 ->in (__DIR__ )
365- ->notPath (basename (__FILE__ ));
366+ ->notPath (basename (__FILE__ ))
367+ ;
366368
367369 $ resolver = $ this ->createConfigurationResolver ([
368370 'path ' => [__FILE__ ],
@@ -378,7 +380,8 @@ public function testResolvePathWithFileThatIsExcludedByDirOverridePathMode()
378380 $ config = new Config ();
379381 $ config ->getFinder ()
380382 ->in ($ dir )
381- ->exclude (basename (__DIR__ ));
383+ ->exclude (basename (__DIR__ ))
384+ ;
382385
383386 $ resolver = $ this ->createConfigurationResolver (
384387 ['path ' => [__FILE__ ]],
@@ -394,7 +397,8 @@ public function testResolvePathWithFileThatIsExcludedByDirIntersectionPathMode()
394397 $ config = new Config ();
395398 $ config ->getFinder ()
396399 ->in ($ dir )
397- ->exclude (basename (__DIR__ ));
400+ ->exclude (basename (__DIR__ ))
401+ ;
398402
399403 $ resolver = $ this ->createConfigurationResolver ([
400404 'path-mode ' => 'intersection ' ,
@@ -410,7 +414,8 @@ public function testResolvePathWithFileThatIsNotExcluded()
410414 $ config = new Config ();
411415 $ config ->getFinder ()
412416 ->in ($ dir )
413- ->notPath ('foo- ' .basename (__FILE__ ));
417+ ->notPath ('foo- ' .basename (__FILE__ ))
418+ ;
414419
415420 $ resolver = $ this ->createConfigurationResolver (
416421 ['path ' => [__FILE__ ]],
0 commit comments