@@ -58,7 +58,7 @@ discard block |
||
| 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 |
||
| 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) |
@@ -230,7 +231,6 @@ discard block |
||
| 230 | 231 | * The binaries from each project will still be placed in the global |
| 231 | 232 | * composer bin directory. |
| 232 | 233 | * |
| 233 | - * @param string $command The path to composer |
|
| 234 | 234 | * @param array $composerArgs Anything from the global $argv to be passed |
| 235 | 235 | * on to Composer |
| 236 | 236 | * @param array $projects A list of projects to install, with the key |
@@ -259,7 +259,6 @@ discard block |
||
| 259 | 259 | * "global" Composer project, we also want to update all of the |
| 260 | 260 | * "isolated" projects installed via cgr in ~/.composer/global. |
| 261 | 261 | * |
| 262 | - * @param string $command The path to composer |
|
| 263 | 262 | * @param array $composerArgs Anything from the global $argv to be passed |
| 264 | 263 | * on to Composer |
| 265 | 264 | * @param array $projects A list of projects to update. Must be empty |
@@ -302,7 +301,6 @@ discard block |
||
| 302 | 301 | /** |
| 303 | 302 | * Generate command string to call `composer require` to install one project. |
| 304 | 303 | * |
| 305 | - * @param string $command The path to composer |
|
| 306 | 304 | * @param array $composerArgs The arguments to pass to composer |
| 307 | 305 | * @param string $projectWithVersion The project:version to install |
| 308 | 306 | * @param array $env Environment to set prior to exec |