@@ -359,6 +359,7 @@ |
||
359 | 359 | /** |
360 | 360 | * Load config file |
361 | 361 | * @param string Path |
362 | + * @param string $path |
|
362 | 363 | * @return boolean Success |
363 | 364 | */ |
364 | 365 | public function loadFile($path) |
@@ -124,7 +124,7 @@ |
||
124 | 124 | * Routes incoming request to related application |
125 | 125 | * @param object $req Generic |
126 | 126 | * @param object $upstream AppInstance of Upstream |
127 | - * @param string $default App Default application name |
|
127 | + * @param string $defaultApp App Default application name |
|
128 | 128 | * @return object Request |
129 | 129 | */ |
130 | 130 | public function getRequest($req, $upstream, $defaultApp = null) |
@@ -81,6 +81,9 @@ |
||
81 | 81 | } |
82 | 82 | } |
83 | 83 | |
84 | + /** |
|
85 | + * @param null|callable $cb |
|
86 | + */ |
|
84 | 87 | public static function addToArray(&$arr, $cb) |
85 | 88 | { |
86 | 89 | if ($arr === null) { |
@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | /** |
154 | 154 | * Sets a limit of simultaneously executing tasks |
155 | 155 | * @param integer $n Natural number or -1 (no limit) |
156 | - * @return this |
|
156 | + * @return ComplexJob |
|
157 | 157 | */ |
158 | 158 | public function maxConcurrency($n = -1) |
159 | 159 | { |
@@ -230,7 +230,7 @@ discard block |
||
230 | 230 | /** |
231 | 231 | * Sets a callback which is going to be fired always when we have a room for more jobs |
232 | 232 | * @param callable $cb Callback |
233 | - * @return this |
|
233 | + * @return ComplexJob |
|
234 | 234 | */ |
235 | 235 | public function more($cb = null) |
236 | 236 | { |
@@ -62,7 +62,7 @@ |
||
62 | 62 | * Returns a proxy callback function with logging for debugging purposes |
63 | 63 | * @param callable $cb Callback |
64 | 64 | * @param mixed $name Data |
65 | - * @return callable |
|
65 | + * @return \Closure |
|
66 | 66 | */ |
67 | 67 | public static function proxy($cb, $name = null) |
68 | 68 | { |
@@ -113,7 +113,7 @@ |
||
113 | 113 | |
114 | 114 | /** |
115 | 115 | * Reset |
116 | - * @return this |
|
116 | + * @return DeferredEvent |
|
117 | 117 | */ |
118 | 118 | public function reset() |
119 | 119 | { |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | |
113 | 113 | /** |
114 | 114 | * Set group |
115 | - * @return this |
|
115 | + * @return ShellCommand |
|
116 | 116 | */ |
117 | 117 | public function setGroup($val) |
118 | 118 | { |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | /** |
124 | 124 | * Set cwd |
125 | 125 | * @param string $dir |
126 | - * @return this |
|
126 | + * @return ShellCommand |
|
127 | 127 | */ |
128 | 128 | public function setCwd($dir) |
129 | 129 | { |
@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | /** |
135 | 135 | * Set group |
136 | 136 | * @param string $val |
137 | - * @return this |
|
137 | + * @return ShellCommand |
|
138 | 138 | */ |
139 | 139 | public function setUser($val) |
140 | 140 | { |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | /** |
146 | 146 | * Set chroot |
147 | 147 | * @param string $dir |
148 | - * @return this |
|
148 | + * @return ShellCommand |
|
149 | 149 | */ |
150 | 150 | public function setChroot($dir) |
151 | 151 | { |
@@ -223,7 +223,7 @@ discard block |
||
223 | 223 | /** |
224 | 224 | * Sets an array of arguments |
225 | 225 | * @param array Arguments |
226 | - * @return this |
|
226 | + * @return ShellCommand |
|
227 | 227 | */ |
228 | 228 | public function setArgs($args = null) |
229 | 229 | { |
@@ -235,7 +235,7 @@ discard block |
||
235 | 235 | /** |
236 | 236 | * Set a hash of environment's variables |
237 | 237 | * @param array Hash of environment's variables |
238 | - * @return this |
|
238 | + * @return ShellCommand |
|
239 | 239 | */ |
240 | 240 | public function setEnv($env = null) |
241 | 241 | { |
@@ -261,7 +261,7 @@ discard block |
||
261 | 261 | /** |
262 | 262 | * Set priority |
263 | 263 | * @param integer $nice Priority |
264 | - * @return this |
|
264 | + * @return ShellCommand |
|
265 | 265 | */ |
266 | 266 | public function nice($nice = null) |
267 | 267 | { |
@@ -272,7 +272,7 @@ discard block |
||
272 | 272 | |
273 | 273 | /** |
274 | 274 | * Called when new data received |
275 | - * @return this|null |
|
275 | + * @return ShellCommand|null |
|
276 | 276 | */ |
277 | 277 | protected function onRead() |
278 | 278 | { |
@@ -316,7 +316,7 @@ discard block |
||
316 | 316 | * @param string $binPath Optional. Binpath |
317 | 317 | * @param array $args Optional. Arguments |
318 | 318 | * @param array $env Optional. Hash of environment's variables |
319 | - * @return this |
|
319 | + * @return ShellCommand |
|
320 | 320 | */ |
321 | 321 | public function execute($binPath = null, $args = null, $env = null) |
322 | 322 | { |
@@ -414,7 +414,7 @@ discard block |
||
414 | 414 | |
415 | 415 | /** |
416 | 416 | * Close write stream |
417 | - * @return this |
|
417 | + * @return ShellCommand |
|
418 | 418 | */ |
419 | 419 | public function closeWrite() |
420 | 420 | { |
@@ -494,7 +494,7 @@ discard block |
||
494 | 494 | /** |
495 | 495 | * Sets callback which will be called once when got EOF |
496 | 496 | * @param callable $cb |
497 | - * @return this |
|
497 | + * @return ShellCommand |
|
498 | 498 | */ |
499 | 499 | public function onEOF($cb = null) |
500 | 500 | { |
@@ -104,7 +104,7 @@ |
||
104 | 104 | * @param integer $timeout Timeout |
105 | 105 | * @param integer|string $id Timer ID |
106 | 106 | * @param integer $priority Priority |
107 | - * @return integer|string Timer ID |
|
107 | + * @return integer|null Timer ID |
|
108 | 108 | */ |
109 | 109 | public static function add($cb, $timeout = null, $id = null, $priority = null) |
110 | 110 | { |
@@ -89,9 +89,8 @@ discard block |
||
89 | 89 | |
90 | 90 | /** |
91 | 91 | * Calls a local method |
92 | - * @param string $method Method name |
|
93 | 92 | * @param mixed ...$args Arguments |
94 | - * @return this |
|
93 | + * @return DNode |
|
95 | 94 | */ |
96 | 95 | public function callLocal() |
97 | 96 | { |
@@ -177,9 +176,8 @@ discard block |
||
177 | 176 | |
178 | 177 | /** |
179 | 178 | * Calls a remote method |
180 | - * @param string $method Method name |
|
181 | 179 | * @param mixed ...$args Arguments |
182 | - * @return this |
|
180 | + * @return DNode |
|
183 | 181 | */ |
184 | 182 | public function callRemote() |
185 | 183 | { |
@@ -196,7 +194,7 @@ discard block |
||
196 | 194 | * Calls a remote method with array of arguments |
197 | 195 | * @param string $method Method name |
198 | 196 | * @param array $args Arguments |
199 | - * @return this |
|
197 | + * @return DNode |
|
200 | 198 | */ |
201 | 199 | public function callRemoteArray($method, $args) |
202 | 200 | { |
@@ -233,7 +231,7 @@ discard block |
||
233 | 231 | /** |
234 | 232 | * Encodes value into JSON |
235 | 233 | * @param mixed $m Value |
236 | - * @return this |
|
234 | + * @return string |
|
237 | 235 | */ |
238 | 236 | public static function toJson($m) |
239 | 237 | { |
@@ -269,7 +267,7 @@ discard block |
||
269 | 267 | /** |
270 | 268 | * Encodes value into JSON for debugging purposes |
271 | 269 | * @param mixed $m Data |
272 | - * @return void |
|
270 | + * @return string |
|
273 | 271 | */ |
274 | 272 | public static function toJsonDebug($m) |
275 | 273 | { |