@@ -84,7 +84,7 @@ public function setUp(): void
8484 $ rm = new RepositoryManager (
8585 $ this ->io ,
8686 $ config ,
87- $ httpDownloader
87+ $ httpDownloader,
8888 );
8989 $ this ->composer ->setRepositoryManager ($ rm );
9090
@@ -302,7 +302,7 @@ public function testFindPlugins()
302302 $ return = $ this ->plugin ->findPlugins (
303303 $ packages ,
304304 [$ this ->path . '/doesnt-exist ' ],
305- $ this ->path . '/vendor '
305+ $ this ->path . '/vendor ' ,
306306 );
307307
308308 $ expected = [
@@ -314,7 +314,7 @@ public function testFindPlugins()
314314 $ return = $ this ->plugin ->findPlugins (
315315 $ packages ,
316316 [$ this ->path . '/plugins ' ],
317- $ this ->path . '/vendor '
317+ $ this ->path . '/vendor ' ,
318318 );
319319
320320 $ expected = [
@@ -330,7 +330,7 @@ public function testFindPlugins()
330330 $ return = $ this ->plugin ->findPlugins (
331331 $ packages ,
332332 [$ this ->path . '/plugins ' , $ this ->path . '/app_plugins ' ],
333- $ this ->path . '/vendor '
333+ $ this ->path . '/vendor ' ,
334334 );
335335
336336 $ expected = [
@@ -369,22 +369,22 @@ public function testWriteConfigFile()
369369 $ this ->assertStringContainsString (
370370 "'Fee' => \$baseDir . '/plugins/Fee/' " ,
371371 $ contents ,
372- 'paths should be relative for app-plugins '
372+ 'paths should be relative for app-plugins ' ,
373373 );
374374 $ this ->assertStringContainsString (
375375 "'Princess' => \$baseDir . '/vendor/cakephp/princess/' " ,
376376 $ contents ,
377- 'paths should be relative for vendor-plugins '
377+ 'paths should be relative for vendor-plugins ' ,
378378 );
379379 $ this ->assertStringContainsString (
380380 "'OddOneOut' => '/some/other/path/' " ,
381381 $ contents ,
382- 'paths should stay absolute if it \'s not under the application root '
382+ 'paths should stay absolute if it \'s not under the application root ' ,
383383 );
384384 $ this ->assertStringContainsString (
385385 "'Vendor/Plugin' => \$baseDir . '/vendor/vendor/plugin/' " ,
386386 $ contents ,
387- 'Plugin namespaces should use forward slash '
387+ 'Plugin namespaces should use forward slash ' ,
388388 );
389389
390390 // Ensure all plugin paths are slash terminated
@@ -403,7 +403,7 @@ public function testWriteConfigFile()
403403 $ this ->assertSame (
404404 $ expected ,
405405 $ result ,
406- 'The evaluated result should be the same as the input except for namespaced plugin '
406+ 'The evaluated result should be the same as the input except for namespaced plugin ' ,
407407 );
408408 }
409409}
0 commit comments