saeid 7 years ago
parent
commit
8718c828af
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/TestSuite/TestCase.php

+ 2 - 1
src/TestSuite/TestCase.php

@@ -192,7 +192,7 @@ abstract class TestCase extends BaseTestCase
 
     /**
      * simulate running the Application
-     * @param string|array list of Plugins to load
+     * @param string|array $plugins list of Plugins to load
      * @return \Cake\Http\BaseApplication
      */
     public function loadPlugins($plugins = [])
@@ -215,6 +215,7 @@ abstract class TestCase extends BaseTestCase
         $app->pluginBootstrap();
         $builder = Router::createRouteBuilder('/');
         $app->pluginRoutes($builder);
+
         return $app;
     }