1 | <?php |
||
15 | class KeyValueCollection implements \Countable |
||
16 | { |
||
17 | /** |
||
18 | * @var array |
||
19 | */ |
||
20 | private $arr; |
||
21 | |||
22 | 3 | public function __construct() |
|
26 | |||
27 | 3 | public function add(string $key, string $value) : KeyValueCollection |
|
35 | |||
36 | 1 | public function get() : array |
|
40 | |||
41 | 1 | public function count() |
|
45 | } |
||
46 |