@@ -7,8 +7,8 @@ discard block |
||
7 | 7 | /** |
8 | 8 | * Sets the value at the specified index $offset to $value |
9 | 9 | * |
10 | - * @param string|integer $offset The index being set. |
|
11 | - * @param mixed $value The new value for the index. |
|
10 | + * @param \stdClass $offset The index being set. |
|
11 | + * @param string $value The new value for the index. |
|
12 | 12 | * |
13 | 13 | * @return void |
14 | 14 | * |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | /** |
32 | 32 | * Returns whether the requested index exists. |
33 | 33 | * |
34 | - * @param mixed $offset The index being checked. |
|
34 | + * @param string|boolean $offset The index being checked. |
|
35 | 35 | * |
36 | 36 | * @return boolean |
37 | 37 | */ |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | /** |
62 | 62 | * Returns the value at the specified index. |
63 | 63 | * |
64 | - * @param integer|string $offset The index with the value. |
|
64 | + * @param \stdClass $offset The index with the value. |
|
65 | 65 | * |
66 | 66 | * @return mixed |
67 | 67 | * |