| 1 | <?php |
||
| 15 | class KeyValueBuilder |
||
|
|
|||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var array |
||
| 19 | */ |
||
| 20 | private $arr; |
||
| 21 | |||
| 22 | 1 | private function __construct() |
|
| 26 | |||
| 27 | 1 | public static function create() : KeyValueBuilder |
|
| 31 | |||
| 32 | 1 | public function addPair(string $key, string $value) : KeyValueBuilder |
|
| 40 | |||
| 41 | 1 | public function build() : array |
|
| 45 | } |