forked from twilio/twilio-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathValues.php
98 lines (87 loc) · 2.67 KB
/
Values.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?php
namespace Twilio;
class Values implements \ArrayAccess {
public const NONE = 'Twilio\\Values\\NONE';
public const ARRAY_NONE = [self::NONE];
public const INT_NONE = 0;
public const BOOL_NONE = false;
protected $options;
private static $noneConstants = array(self::NONE, self::ARRAY_NONE, self::INT_NONE, self::BOOL_NONE);
public static function array_get(array $array, string $key, ?string $default = null) {
if (\array_key_exists($key, $array)) {
return $array[$key];
}
return $default;
}
public static function of(array $array): array {
$result = [];
foreach ($array as $key => $value) {
if (!in_array($value, self::$noneConstants, true)) {
$result[$key] = $value;
}
}
return $result;
}
public function __construct(array $options) {
$this->options = [];
foreach ($options as $key => $value) {
$this->options[\strtolower($key)] = $value;
}
}
/**
* (PHP 5 >= 5.0.0)<br/>
* Whether a offset exists
* @link http://php.net/manual/en/arrayaccess.offsetexists.php
* @param mixed $offset <p>
* An offset to check for.
* </p>
* @return bool true on success or false on failure.
* </p>
* <p>
* 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)<br/>
* Offset to retrieve
* @link http://php.net/manual/en/arrayaccess.offsetget.php
* @param mixed $offset <p>
* The offset to retrieve.
* </p>
* @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)<br/>
* Offset to set
* @link http://php.net/manual/en/arrayaccess.offsetset.php
* @param mixed $offset <p>
* The offset to assign the value to.
* </p>
* @param mixed $value <p>
* The value to set.
* </p>
* @return void
*/
public function offsetSet($offset, $value): void {
$this->options[\strtolower($offset)] = $value;
}
/**
* (PHP 5 >= 5.0.0)<br/>
* Offset to unset
* @link http://php.net/manual/en/arrayaccess.offsetunset.php
* @param mixed $offset <p>
* The offset to unset.
* </p>
* @return void
*/
public function offsetUnset($offset): void {
unset($this->options[$offset]);
}
}