@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | * Indicate why a command was not run |
27 | 27 | * |
28 | 28 | * @param ScheduledCommandInterface $command |
29 | - * @param $reason |
|
29 | + * @param string $reason |
|
30 | 30 | */ |
31 | 31 | public function commandNotRun(ScheduledCommandInterface $command, $reason) { |
32 | 32 | if ($this->optionReader->isDebugMode()) { |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | * Indicate why a command has run |
39 | 39 | * |
40 | 40 | * @param ScheduledCommandInterface $command |
41 | - * @param $runCommand |
|
41 | + * @param string $runCommand |
|
42 | 42 | */ |
43 | 43 | public function commandRun(ScheduledCommandInterface $command, $runCommand) { |
44 | 44 | if ($this->optionReader->isDebugMode()) { |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | /** |
50 | 50 | * Log plain text |
51 | 51 | * |
52 | - * @param $message |
|
52 | + * @param string $message |
|
53 | 53 | */ |
54 | 54 | public function log($message) |
55 | 55 | { |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | /** |
26 | 26 | * User to run the command as |
27 | 27 | * |
28 | - * @return string Defaults to false to run as default user |
|
28 | + * @return boolean Defaults to false to run as default user |
|
29 | 29 | */ |
30 | 30 | public function user() |
31 | 31 | { |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | /** |
36 | 36 | * Environment(s) under which the given command should run |
37 | 37 | * |
38 | - * @return string|array |
|
38 | + * @return string |
|
39 | 39 | */ |
40 | 40 | public function environment() |
41 | 41 | { |