1 | <?php |
||
7 | class EndpointConfiguration implements \ArrayAccess, EndpointConfigurationInterface |
||
8 | { |
||
9 | private $config = []; |
||
10 | |||
11 | public function set(string $property, $value): EndpointConfigurationInterface |
||
24 | |||
25 | public function overwrite(string $property, $value): EndpointConfigurationInterface |
||
31 | |||
32 | public function unset(string $property): EndpointConfigurationInterface |
||
38 | |||
39 | /** |
||
40 | * @inheritDoc |
||
41 | */ |
||
42 | public function offsetExists($offset) |
||
46 | |||
47 | /** |
||
48 | * @inheritDoc |
||
49 | */ |
||
50 | public function offsetGet($offset) |
||
54 | |||
55 | /** |
||
56 | * @inheritDoc |
||
57 | */ |
||
58 | public function offsetSet($offset, $value) |
||
62 | |||
63 | /** |
||
64 | * @inheritDoc |
||
65 | */ |
||
66 | public function offsetUnset($offset) |
||
70 | } |
||
71 |