__construct() __construct(mixed $data) : self Setup resource. Parameters mixed $data The data to use for source. Returns self
offsetExists() offsetExists(mixed $offset) : boolean Check if offset exists Parameters mixed $offset Returns boolean
offsetGet() offsetGet(mixed $offset) : mixed Get the value by offset. Parameters mixed $offset Returns mixed
offsetSet() offsetSet(mixed $offset, mixed $value) : void Set a value by offset. Parameters mixed $offset mixed $value
__isset() __isset(string $key) : boolean Check if key exists in data. Parameters string $key Returns boolean
__get() __get(string $key) : mixed Allows for accessing the underlying array as an object. $response->shop->name will forward to $response['shop']['name'] Parameters string $key Returns mixed