@@ -329,7 +329,7 @@ |
||
329 | 329 | * @param string $str The string to unescape |
330 | 330 | * @param string $esc The escape character used |
331 | 331 | * @param string $quo The quote character used |
332 | - * @return mixed The string with characters unescaped |
|
332 | + * @return string The string with characters unescaped |
|
333 | 333 | * @todo This actually shouldn't even be necessary. Characters should be read |
334 | 334 | * in one at a time and a quote that follows another should just be ignored |
335 | 335 | * deeming this unnecessary. |
@@ -692,7 +692,7 @@ |
||
692 | 692 | * |
693 | 693 | * @param string $data The data to check |
694 | 694 | * |
695 | - * @return bool Whether the data is quoted or not |
|
695 | + * @return integer Whether the data is quoted or not |
|
696 | 696 | */ |
697 | 697 | protected function isQuoted($data) |
698 | 698 | { |
@@ -280,7 +280,7 @@ discard block |
||
280 | 280 | * also optionally throw an OutOfBoundsException if no value is found. |
281 | 281 | * |
282 | 282 | * @param mixed $index The index of the data you want to get |
283 | - * @param mixed $default The default value to return if none available |
|
283 | + * @param null|integer $default The default value to return if none available |
|
284 | 284 | * @param bool $throw True if you want an exception to be thrown if no data found at $index |
285 | 285 | * @throws OutOfBoundsException If $throw is true and $index isn't found |
286 | 286 | * @return mixed The data found at $index or failing that, the $default |
@@ -545,7 +545,7 @@ discard block |
||
545 | 545 | * Returns a new collection with $items added. |
546 | 546 | * |
547 | 547 | * @param array $items Any number of arguments will be pushed onto the |
548 | - * @return mixed The first item in this collection |
|
548 | + * @return AbstractCollection The first item in this collection |
|
549 | 549 | */ |
550 | 550 | public function push(...$items) |
551 | 551 | { |
@@ -558,7 +558,7 @@ discard block |
||
558 | 558 | * |
559 | 559 | * Returns a new collection with $items added. |
560 | 560 | * |
561 | - * @return mixed The first item in this collection |
|
561 | + * @return AbstractCollection The first item in this collection |
|
562 | 562 | */ |
563 | 563 | public function unshift(...$items) |
564 | 564 | { |
@@ -697,7 +697,7 @@ discard block |
||
697 | 697 | /** |
698 | 698 | * Returns collection in reverse order. |
699 | 699 | * |
700 | - * @param null $preserveKeys True if you want to preserve collection's keys |
|
700 | + * @param boolean $preserveKeys True if you want to preserve collection's keys |
|
701 | 701 | * @return AbstractCollection This collection in reverse order. |
702 | 702 | */ |
703 | 703 | public function reverse($preserveKeys = null) |