Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
34 | 4 | public function getEndpointNamesFor(array $messageTypes) |
|
35 | { |
||
36 | 4 | $endpoints = []; |
|
37 | 4 | foreach ($messageTypes as $messageType) { |
|
38 | 4 | if (isset($this->staticRules[$messageType])) { |
|
39 | 4 | $endpoints = array_merge($endpoints, $this->staticRules[$messageType]); |
|
40 | } |
||
41 | } |
||
42 | |||
43 | 4 | return array_unique($endpoints); |
|
44 | } |
||
45 | } |
||
46 |