@@ -310,7 +310,7 @@ discard block |
||
310 | 310 | * Prompts user with confirmation if fixtures should be loaded. |
311 | 311 | * @param array $fixtures |
312 | 312 | * @param array $except |
313 | - * @return bool |
|
313 | + * @return boolean|null |
|
314 | 314 | */ |
315 | 315 | private function confirmLoad($fixtures, $except) |
316 | 316 | { |
@@ -342,7 +342,7 @@ discard block |
||
342 | 342 | * Prompts user with confirmation for fixtures that should be unloaded. |
343 | 343 | * @param array $fixtures |
344 | 344 | * @param array $except |
345 | - * @return bool |
|
345 | + * @return boolean|null |
|
346 | 346 | */ |
347 | 347 | private function confirmUnload($fixtures, $except) |
348 | 348 | { |
@@ -459,8 +459,8 @@ discard block |
||
459 | 459 | * ``` |
460 | 460 | * |
461 | 461 | * @param array $array |
462 | - * @param string|\Closure $from |
|
463 | - * @param string|\Closure $to |
|
462 | + * @param string $from |
|
463 | + * @param string $to |
|
464 | 464 | * @param string|\Closure $group |
465 | 465 | * @return array |
466 | 466 | */ |
@@ -515,7 +515,7 @@ discard block |
||
515 | 515 | * To sort by multiple keys, provide an array of keys here. |
516 | 516 | * @param int|array $direction the sorting direction. It can be either `SORT_ASC` or `SORT_DESC`. |
517 | 517 | * When sorting by multiple keys with different sorting directions, use an array of sorting directions. |
518 | - * @param int|array $sortFlag the PHP sort flag. Valid values include |
|
518 | + * @param integer $sortFlag the PHP sort flag. Valid values include |
|
519 | 519 | * `SORT_REGULAR`, `SORT_NUMERIC`, `SORT_STRING`, `SORT_LOCALE_STRING`, `SORT_NATURAL` and `SORT_FLAG_CASE`. |
520 | 520 | * Please refer to [PHP manual](http://php.net/manual/en/function.sort.php) |
521 | 521 | * for more details. When sorting by multiple keys with different sort flags, use an array of sort flags. |
@@ -576,7 +576,7 @@ discard block |
||
576 | 576 | * - windows without ansicon |
577 | 577 | * - not tty consoles |
578 | 578 | * |
579 | - * @param mixed $stream |
|
579 | + * @param resource $stream |
|
580 | 580 | * @return bool true if the stream supports ANSI colors, otherwise false. |
581 | 581 | */ |
582 | 582 | public static function streamSupportsAnsiColors($stream) |
@@ -601,7 +601,7 @@ discard block |
||
601 | 601 | * @param bool $refresh whether to force checking and not re-use cached size value. |
602 | 602 | * This is useful to detect changing window size while the application is running but may |
603 | 603 | * not get up to date values on every terminal. |
604 | - * @return array|bool An array of ($width, $height) or false when it was not able to determine size. |
|
604 | + * @return string An array of ($width, $height) or false when it was not able to determine size. |
|
605 | 605 | */ |
606 | 606 | public static function getScreenSize($refresh = false) |
607 | 607 | { |
@@ -807,7 +807,7 @@ discard block |
||
807 | 807 | * |
808 | 808 | * @param string $message to print out before waiting for user input |
809 | 809 | * @param bool $default this value is returned if no selection is made. |
810 | - * @return bool whether user confirmed |
|
810 | + * @return boolean|null whether user confirmed |
|
811 | 811 | */ |
812 | 812 | public static function confirm($message, $default = false) |
813 | 813 | { |
@@ -634,7 +634,7 @@ |
||
634 | 634 | * @param string $pattern |
635 | 635 | * @param bool $caseSensitive |
636 | 636 | * @throws \yii\base\InvalidParamException |
637 | - * @return array with keys: (string) pattern, (int) flags, (int|bool) firstWildcard |
|
637 | + * @return string with keys: (string) pattern, (int) flags, (int|bool) firstWildcard |
|
638 | 638 | */ |
639 | 639 | private static function parseExcludePattern($pattern, $caseSensitive) |
640 | 640 | { |
@@ -308,7 +308,7 @@ |
||
308 | 308 | * Parses date string into UNIX timestamp |
309 | 309 | * |
310 | 310 | * @param string $value string representing date |
311 | - * @return int|false a UNIX timestamp or `false` on failure. |
|
311 | + * @return integer a UNIX timestamp or `false` on failure. |
|
312 | 312 | */ |
313 | 313 | protected function parseDateValue($value) |
314 | 314 | { |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | * Returns a value indicating whether there is any handler attached to the specified class-level event. |
146 | 146 | * Note that this method will also check all parent classes to see if there is any handler attached |
147 | 147 | * to the named event. |
148 | - * @param string|object $class the object or the fully qualified class name specifying the class-level event. |
|
148 | + * @param Component $class the object or the fully qualified class name specifying the class-level event. |
|
149 | 149 | * @param string $name the event name. |
150 | 150 | * @return boolean whether there is any handler attached to the event. |
151 | 151 | */ |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | * Triggers a class-level event. |
180 | 180 | * This method will cause invocation of event handlers that are attached to the named event |
181 | 181 | * for the specified class and all its parent classes. |
182 | - * @param string|object $class the object or the fully qualified class name specifying the class-level event. |
|
182 | + * @param Component $class the object or the fully qualified class name specifying the class-level event. |
|
183 | 183 | * @param string $name the event name. |
184 | 184 | * @param Event $event the event parameter. If not set, a default [[Event]] object will be created. |
185 | 185 | */ |
@@ -73,7 +73,7 @@ |
||
73 | 73 | |
74 | 74 | /** |
75 | 75 | * Returns the names of all columns in this table. |
76 | - * @return array list of column names |
|
76 | + * @return integer[] list of column names |
|
77 | 77 | */ |
78 | 78 | public function getColumnNames() |
79 | 79 | { |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | * Removes a cookie. |
133 | 133 | * If `$removeFromBrowser` is true, the cookie will be removed from the browser. |
134 | 134 | * In this case, a cookie with outdated expiry will be added to the collection. |
135 | - * @param Cookie|string $cookie the cookie object or the name of the cookie to be removed. |
|
135 | + * @param string $cookie the cookie object or the name of the cookie to be removed. |
|
136 | 136 | * @param boolean $removeFromBrowser whether to remove the cookie from browser |
137 | 137 | * @throws InvalidCallException if the cookie collection is read only |
138 | 138 | */ |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | |
172 | 172 | /** |
173 | 173 | * Returns the collection as a PHP array. |
174 | - * @return array the array representation of the collection. |
|
174 | + * @return Cookie[] the array representation of the collection. |
|
175 | 175 | * The array keys are cookie names, and the array values are the corresponding cookie objects. |
176 | 176 | */ |
177 | 177 | public function toArray() |
@@ -194,7 +194,7 @@ |
||
194 | 194 | * @param string $message the error message. |
195 | 195 | * @param string $file the filename that the error was raised in. |
196 | 196 | * @param int $line the line number the error was raised at. |
197 | - * @return bool whether the normal error handler continues. |
|
197 | + * @return null|false whether the normal error handler continues. |
|
198 | 198 | * |
199 | 199 | * @throws ErrorException |
200 | 200 | */ |