Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
17 | public function set(string $property, $value): self |
||
18 | { |
||
19 | if (array_key_exists($property, $this->config)) { |
||
20 | throw new EndpointBuildingException(sprintf( |
||
21 | 'Property "%s" is already set, use $config->overwrite() if you want to change it.', |
||
22 | $property |
||
23 | )); |
||
24 | } |
||
25 | |||
26 | $this->config[$property] = $value; |
||
27 | |||
28 | return $this; |
||
29 | } |
||
30 | |||
77 |