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