* Returns the element at the specified offset. * This method is required by the SPL interface [[\ArrayAccess]]. * It is implicitly called when you use something like `$value = $model[$offset];`. * @param mixed $offset the offset to retrieve element. * @return mixed the element at the offset, null if no element is found at the offset */
($offset)
| 1022 | * @return mixed the element at the offset, null if no element is found at the offset |
| 1023 | */ |
| 1024 | public function offsetGet($offset) |
| 1025 | { |
| 1026 | return $this->$offset; |
| 1027 | } |
| 1028 | |
| 1029 | /** |
| 1030 | * Sets the element at the specified offset. |
no outgoing calls
no test coverage detected