@@ -28,7 +28,7 @@ |
||
28 | 28 | /** |
29 | 29 | * ConsoleOutput constructor. |
30 | 30 | * |
31 | - * @param int|mixed $verbosity The verbosity |
|
31 | + * @param integer $verbosity The verbosity |
|
32 | 32 | * @param boolean $decorated If output should be decorated |
33 | 33 | * @param OutputFormatterInterface|null $formatter Formatter |
34 | 34 | */ |
@@ -135,7 +135,7 @@ |
||
135 | 135 | * @param callable|null $callback A PHP callback to run whenever there is some |
136 | 136 | * output available on STDOUT or STDERR |
137 | 137 | * |
138 | - * @return mixed The output of the shell command or FALSE if the command returned a non-zero exit code and $ignoreErrors was enabled. |
|
138 | + * @return null|string The output of the shell command or FALSE if the command returned a non-zero exit code and $ignoreErrors was enabled. |
|
139 | 139 | */ |
140 | 140 | public function run($callback = NULL) |
141 | 141 | { |
@@ -136,7 +136,7 @@ |
||
136 | 136 | /** |
137 | 137 | * Execute the command |
138 | 138 | * |
139 | - * @return mixed |
|
139 | + * @return null|string |
|
140 | 140 | */ |
141 | 141 | protected function executeCommand() |
142 | 142 | { |
@@ -426,7 +426,7 @@ discard block |
||
426 | 426 | /** |
427 | 427 | * Execute the next fetched task after given $task |
428 | 428 | * |
429 | - * @param Task|string $task Task or task name |
|
429 | + * @param string $task Task or task name |
|
430 | 430 | * |
431 | 431 | * @return $this |
432 | 432 | */ |
@@ -444,7 +444,7 @@ discard block |
||
444 | 444 | * @param string $question The question |
445 | 445 | * @param string $default The default value |
446 | 446 | * |
447 | - * @return mixed|\Netresearch\Kite\Task |
|
447 | + * @return string |
|
448 | 448 | */ |
449 | 449 | public function answer($question, $default = null) |
450 | 450 | { |
@@ -506,11 +506,11 @@ discard block |
||
506 | 506 | * Run a composer command |
507 | 507 | * |
508 | 508 | * @param string $command The command to execute |
509 | - * @param array|string|null $optArg Options and arguments |
|
509 | + * @param string $optArg Options and arguments |
|
510 | 510 | * {@see \Netresearch\Kite\Task\ShellTask} |
511 | 511 | * @param array $processSettings Settings for symfony process class |
512 | 512 | * |
513 | - * @return string|\Netresearch\Kite\Task\ComposerTask |
|
513 | + * @return string |
|
514 | 514 | */ |
515 | 515 | public function composer($command, $optArg = null, array $processSettings = array()) |
516 | 516 | { |
@@ -566,7 +566,7 @@ discard block |
||
566 | 566 | * {@see \Netresearch\Kite\Task\ShellTask} |
567 | 567 | * @param array $processSettings Settings for symfony process class |
568 | 568 | * |
569 | - * @return Task\GitTask|string |
|
569 | + * @return string |
|
570 | 570 | */ |
571 | 571 | public function git($command, $cwd = null, $optArg = null, array $processSettings = array()) |
572 | 572 | { |
@@ -576,7 +576,7 @@ discard block |
||
576 | 576 | /** |
577 | 577 | * Run a workflow for each of the $array's values. |
578 | 578 | * |
579 | - * @param array|\Traversable $array The object to iterate over |
|
579 | + * @param string $array The object to iterate over |
|
580 | 580 | * @param string|array $as Either string for |
581 | 581 | * foreach ($array as $as) |
582 | 582 | * or array for |
@@ -633,7 +633,7 @@ discard block |
||
633 | 633 | * {@see \Netresearch\Kite\Task\ShellTask} |
634 | 634 | * @param array $processSettings Settings for symfony process class |
635 | 635 | * |
636 | - * @return Task\RemoteShellTask|string |
|
636 | + * @return string |
|
637 | 637 | */ |
638 | 638 | public function remoteShell($command, $cwd = null, $optArg = null, array $processSettings = array()) |
639 | 639 | { |
@@ -136,7 +136,7 @@ |
||
136 | 136 | /** |
137 | 137 | * Execute the command |
138 | 138 | * |
139 | - * @return mixed |
|
139 | + * @return null|string |
|
140 | 140 | */ |
141 | 141 | protected function executeCommand() |
142 | 142 | { |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | /** |
53 | 53 | * Constructor. |
54 | 54 | * |
55 | - * @param mixed $stream A stream resource |
|
55 | + * @param resource $stream A stream resource |
|
56 | 56 | * @param int $verbosity The verbosity level (one of the VERBOSITY constants in OutputInterface) |
57 | 57 | * @param bool|null $decorated Whether to decorate messages (null for auto-guessing) |
58 | 58 | * @param OutputFormatterInterface|null $formatter Output formatter instance (null to use default OutputFormatter) |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | /** |
131 | 131 | * Write to output |
132 | 132 | * |
133 | - * @param array|string $messages Messages |
|
133 | + * @param string $messages Messages |
|
134 | 134 | * @param bool $newline Whether to append a newline |
135 | 135 | * @param int $type The output type |
136 | 136 | * |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | /** |
106 | 106 | * Handle onBefore, onAfter and name |
107 | 107 | * |
108 | - * @param mixed $offset The name of the variable |
|
108 | + * @param string $offset The name of the variable |
|
109 | 109 | * @param mixed $value The value |
110 | 110 | * |
111 | 111 | * @return void |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | /** |
159 | 159 | * Generate name if it doesn't exist |
160 | 160 | * |
161 | - * @param mixed $offset The name of the variable |
|
161 | + * @param string $offset The name of the variable |
|
162 | 162 | * |
163 | 163 | * @return mixed |
164 | 164 | */ |