| 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 | 5389 | 0644 | editdlrm |
| Deserialize.php | 593 | 0644 | editdlrm |
| Domain.php | 2117 | 0644 | editdlrm |
| InstanceContext.php | 308 | 0644 | editdlrm |
| InstanceResource.php | 536 | 0644 | editdlrm |
| ListResource.php | 302 | 0644 | editdlrm |
| Options.php | 222 | 0644 | editdlrm |
| Page.php | 6001 | 0644 | editdlrm |
| Serialize.php | 2204 | 0644 | editdlrm |
| Stream.php | 2845 | 0644 | editdlrm |
| Values.php | 2568 | 0644 | editdlrm |
| Version.php | 7197 | 0644 | editdlrm |
| VersionInfo.php | 240 | 0644 | editdlrm |
/home/techb158/dev.balacoffee.com/vendor/twilio/sdk/src/Twilio/Values.php (2568B)
* An offset to check for. *
* @return bool true on success or false on failure. * *
* The return value will be casted to boolean if non-boolean was returned.
*/
public function offsetExists($offset): bool {
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. */ #[\ReturnTypeWillChange] 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): void { $this->options[\strtolower($offset)] = $value; } /** * (PHP 5 >= 5.0.0)* The offset to unset. *
* @return void */ public function offsetUnset($offset): void { unset($this->options[$offset]); } }