Completed
Push — master ( 3b9c69...0cfff3 )
by Greg
02:07
created
src/Application.php 1 patch
Doc Comments   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
     /**
59 59
      * Run all of the commands in a list.  Abort early if any fail.
60 60
      *
61
-     * @param array $commandList An array of CommandToExec
61
+     * @param CommandToExec $commandList An array of CommandToExec
62 62
      * @return integer
63 63
      */
64 64
     public function runCommandList($commandList, $options)
@@ -85,6 +85,7 @@  discard block
 block discarded – undo
85 85
      * @param array $composerArgs
86 86
      * @param array $projects
87 87
      * @param array $options
88
+     * @param string $command
88 89
      * @return CommandToExec
89 90
      */
90 91
     public function getCommandsToExec($command, $composerArgs, $projects, $options)
@@ -267,7 +268,6 @@  discard block
 block discarded – undo
267 268
      * "global" Composer project, we also want to update all of the
268 269
      * "isolated" projects installed via cgr in ~/.composer/global.
269 270
      *
270
-     * @param string $command The path to composer
271 271
      * @param array $composerArgs Anything from the global $argv to be passed
272 272
      *   on to Composer
273 273
      * @param array $projects A list of projects to update.
@@ -299,11 +299,12 @@  discard block
 block discarded – undo
299 299
     /**
300 300
      * Generate command string to call `composer require` to install one project.
301 301
      *
302
-     * @param string $command The path to composer
303 302
      * @param array $composerArgs The arguments to pass to composer
304 303
      * @param string $projectWithVersion The project:version to install
305 304
      * @param array $env Environment to set prior to exec
306 305
      * @param string $installLocation Location to install the project
306
+     * @param string $composerCommand
307
+     * @param string $execPath
307 308
      * @return CommandToExec
308 309
      */
309 310
     public function buildGlobalCommand($composerCommand, $execPath, $composerArgs, $projectWithVersion, $env, $installLocation)
Please login to merge, or discard this patch.