@@ -42,6 +42,9 @@ |
||
42 | 42 | 600 => '%M', |
43 | 43 | ); |
44 | 44 | |
45 | + /** |
|
46 | + * @param integer $level |
|
47 | + */ |
|
45 | 48 | public function __construct($level = Logger::DEBUG, $bubble = true) { |
46 | 49 | |
47 | 50 | $this->color = new Console_Color2(); |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | /** |
123 | 123 | * Runner constructor |
124 | 124 | * |
125 | - * @param \Comodojo\Extender\Debug $logger Logger instance |
|
125 | + * @param Logger $logger Logger instance |
|
126 | 126 | * @param bool $multithread Enable/disable multithread mode |
127 | 127 | * @param int $max_result_bytes_in_multithread Max result bytes |
128 | 128 | * @param int $max_childs_runtime Max child runtime |
@@ -676,6 +676,7 @@ discard block |
||
676 | 676 | /** |
677 | 677 | * Change child process priority according to EXTENDER_NICENESS |
678 | 678 | * |
679 | + * @param Logger $logger |
|
679 | 680 | */ |
680 | 681 | private static function adjustNiceness($pid, $logger) { |
681 | 682 |
@@ -74,8 +74,6 @@ discard block |
||
74 | 74 | /** |
75 | 75 | * Class constructor |
76 | 76 | * |
77 | - * @param \Console_CommandLine $parser |
|
78 | - * @param \Monolog\logger $logger |
|
79 | 77 | */ |
80 | 78 | public function add($command, $parameters) { |
81 | 79 | |
@@ -140,11 +138,12 @@ discard block |
||
140 | 138 | /** |
141 | 139 | * Execute command |
142 | 140 | * |
143 | - * @param string $command Command to execute |
|
141 | + * @param string $command_name Command to execute |
|
144 | 142 | * @param array $options Options provided |
145 | 143 | * @param array $args Arguments provided |
146 | 144 | * @param Console_Color2 $color Injected Console_Color2 instance |
147 | - * @param array $tasks Array of available tasks |
|
145 | + * @param TasksTable $tasks Array of available tasks |
|
146 | + * @param Logger $logger |
|
148 | 147 | * |
149 | 148 | * @return string |
150 | 149 | */ |
@@ -170,7 +170,7 @@ |
||
170 | 170 | * |
171 | 171 | * @param \Monolog\Logger $logger |
172 | 172 | * |
173 | - * @return array |
|
173 | + * @return TasksTable |
|
174 | 174 | */ |
175 | 175 | public static function load(\Monolog\Logger $logger) { |
176 | 176 |