1 | <?php |
||
8 | class MinkParameters implements \Countable, \IteratorAggregate, \ArrayAccess |
||
9 | { |
||
10 | /** @var array */ |
||
11 | private $minkParameters; |
||
12 | |||
13 | public function __construct(array $minkParameters) |
||
17 | |||
18 | public function getIterator(): \Traversable |
||
22 | |||
23 | public function offsetExists($offset): bool |
||
27 | |||
28 | public function offsetGet($offset) |
||
32 | |||
33 | public function offsetSet($offset, $value): void |
||
37 | |||
38 | public function offsetUnset($offset): void |
||
42 | |||
43 | public function count(): int |
||
47 | } |
||
48 |