| Name | Size | Mode | Actions |
|---|---|---|---|
| Exceptions/ | - | 0755 | rm |
| Http/ | - | 0755 | rm |
| Jwt/ | - | 0755 | rm |
| Rest/ | - | 0755 | rm |
| Security/ | - | 0755 | rm |
| TaskRouter/ | - | 0755 | rm |
| TwiML/ | - | 0755 | rm |
| autoload.php | 5328 | 0644 | editdlrm |
| Deserialize.php | 522 | 0644 | editdlrm |
| Domain.php | 2076 | 0644 | editdlrm |
| InstanceContext.php | 304 | 0644 | editdlrm |
| InstanceResource.php | 427 | 0644 | editdlrm |
| ListResource.php | 298 | 0644 | editdlrm |
| Options.php | 212 | 0644 | editdlrm |
| Page.php | 5740 | 0644 | editdlrm |
| Serialize.php | 2420 | 0644 | editdlrm |
| Stream.php | 2752 | 0644 | editdlrm |
| Twiml.php | 4541 | 0644 | editdlrm |
| Values.php | 2432 | 0644 | editdlrm |
| Version.php | 6521 | 0644 | editdlrm |
| VersionInfo.php | 234 | 0644 | editdlrm |
/home/desid573/public_html/hooks/twilio-php-master/Twilio/Values.php (2432B)
* An offset to check for. *
* @return boolean true on success or false on failure. * *
* The return value will be casted to boolean if non-boolean was returned.
*/
public function offsetExists($offset) {
return true;
}
/**
* (PHP 5 >= 5.0.0)
* Offset to retrieve
* @link http://php.net/manual/en/arrayaccess.offsetget.php
* @param mixed $offset
* The offset to retrieve. *
* @return mixed Can return all value types. */ public function offsetGet($offset) { $offset = strtolower($offset); return array_key_exists($offset, $this->options) ? $this->options[$offset] : self::NONE; } /** * (PHP 5 >= 5.0.0)* The offset to assign the value to. *
* @param mixed $value* The value to set. *
* @return void */ public function offsetSet($offset, $value) { $this->options[strtolower($offset)] = $value; } /** * (PHP 5 >= 5.0.0)* The offset to unset. *
* @return void */ public function offsetUnset($offset) { unset($this->options[$offset]); } }