Completed
Push — master ( 273697...62e4fc )
by Greg
03:18
created
src/Config/Config.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -45,6 +45,7 @@
 block discarded – undo
45 45
 
46 46
     /**
47 47
      * {@inheritdoc}
48
+     * @param string $name
48 49
      */
49 50
     public function addContext($name, ConfigInterface $config)
50 51
     {
Please login to merge, or discard this patch.
src/Runner.php 1 patch
Doc Comments   +8 added lines, -4 removed lines patch added patch discarded remove patch
@@ -79,6 +79,9 @@  discard block
 block discarded – undo
79 79
         $this->dir = getcwd();
80 80
     }
81 81
 
82
+    /**
83
+     * @param string $errorType
84
+     */
82 85
     protected function errorCondition($msg, $errorType)
83 86
     {
84 87
         $this->errorConditions[$msg] = $errorType;
@@ -126,7 +129,7 @@  discard block
 block discarded – undo
126 129
     }
127 130
 
128 131
     /**
129
-     * @param array $argv
132
+     * @param string[] $argv
130 133
      * @param null|string $appName
131 134
      * @param null|string $appVersion
132 135
      * @param null|\Symfony\Component\Console\Output\OutputInterface $output
@@ -147,6 +150,7 @@  discard block
 block discarded – undo
147 150
 
148 151
     /**
149 152
      * Get a list of locations where config files may be loaded
153
+     * @param string $userConfig
150 154
      * @return string[]
151 155
      */
152 156
     protected function getConfigFilePaths($userConfig)
@@ -162,7 +166,7 @@  discard block
 block discarded – undo
162 166
      * @param null|\Symfony\Component\Console\Input\InputInterface $input
163 167
      * @param null|\Symfony\Component\Console\Output\OutputInterface $output
164 168
      * @param null|\Robo\Application $app
165
-     * @param array[] $commandFiles
169
+     * @param null|string $commandFiles
166 170
      * @param null|ClassLoader $classLoader
167 171
      *
168 172
      * @return int
@@ -258,9 +262,9 @@  discard block
 block discarded – undo
258 262
     }
259 263
 
260 264
     /**
261
-     * @param $relativeNamespace
265
+     * @param string $relativeNamespace
262 266
      *
263
-     * @return array|string[]
267
+     * @return string[]
264 268
      */
265 269
     protected function discoverCommandClasses($relativeNamespace)
266 270
     {
Please login to merge, or discard this patch.