Conditions | 3 |
Paths | 4 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
16 | 4 | public function routeToEndpoint($messageFqcn, $endpointName) |
|
17 | { |
||
18 | 4 | if (!isset($this->staticRules[$messageFqcn])) { |
|
19 | 4 | $this->staticRules[$messageFqcn] = []; |
|
20 | } |
||
21 | |||
22 | 4 | if (in_array($endpointName, $this->staticRules[$messageFqcn])) { |
|
23 | 1 | return; |
|
24 | } |
||
25 | |||
26 | 4 | $this->staticRules[$messageFqcn][] = $endpointName; |
|
27 | 4 | } |
|
28 | |||
46 |