Completed
Pull Request — master (#552)
by Greg
03:18
created
src/Collection/CollectionBuilder.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -72,6 +72,10 @@
 block discarded – undo
72 72
         $this->commandFile = $commandFile;
73 73
     }
74 74
 
75
+    /**
76
+     * @param \League\Container\ContainerInterface $container
77
+     * @param BuilderAwareInterface $commandFile
78
+     */
75 79
     public static function create($container, $commandFile)
76 80
     {
77 81
         $builder = new self($commandFile);
Please login to merge, or discard this patch.
src/Robo.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,6 +91,7 @@  discard block
 block discarded – undo
91 91
 
92 92
     /**
93 93
      * Create a config object and load it from the provided paths.
94
+     * @param string[] $paths
94 95
      */
95 96
     public static function createConfiguration($paths)
96 97
     {
@@ -101,6 +102,7 @@  discard block
 block discarded – undo
101 102
 
102 103
     /**
103 104
      * Use a simple config loader to load configuration values from specified paths
105
+     * @param Config\Config $config
104 106
      */
105 107
     public static function loadConfiguration($paths, $config = null)
106 108
     {
@@ -304,7 +306,7 @@  discard block
 block discarded – undo
304 306
      * @param string $id
305 307
      *   The ID of the service to retrieve.
306 308
      *
307
-     * @return mixed
309
+     * @return \Symfony\Component\Console\Output\OutputInterface
308 310
      *   The specified service.
309 311
      */
310 312
     public static function service($id)
Please login to merge, or discard this patch.