Completed
Pull Request — master (#675)
by Greg
03:05
created
src/Robo.php 1 patch
Doc Comments   +6 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,6 +93,7 @@  discard block
 block discarded – undo
93 93
 
94 94
     /**
95 95
      * Create a config object and load it from the provided paths.
96
+     * @param string[] $paths
96 97
      */
97 98
     public static function createConfiguration($paths)
98 99
     {
@@ -103,6 +104,7 @@  discard block
 block discarded – undo
103 104
 
104 105
     /**
105 106
      * Use a simple config loader to load configuration values from specified paths
107
+     * @param Config\Config $config
106 108
      */
107 109
     public static function loadConfiguration($paths, $config = null)
108 110
     {
@@ -338,6 +340,9 @@  discard block
 block discarded – undo
338 340
         return static::service($commandFileName);
339 341
     }
340 342
 
343
+    /**
344
+     * @param string $commandClass
345
+     */
341 346
     protected static function commandInstanceContainerName($commandClass)
342 347
     {
343 348
         return "{$commandClass}Commands";
@@ -353,7 +358,7 @@  discard block
 block discarded – undo
353 358
      * @param string $id
354 359
      *   The ID of the service to retrieve.
355 360
      *
356
-     * @return mixed
361
+     * @return \Symfony\Component\Console\Output\OutputInterface
357 362
      *   The specified service.
358 363
      */
359 364
     public static function service($id)
Please login to merge, or discard this patch.