| Conditions | 4 |
| Paths | 4 |
| Total Lines | 14 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 20 |
| Changes | 0 | ||
| 1 | <?php |
||
| 48 | public function prepareResult($result) |
||
| 49 | { |
||
| 50 | if ($result === true) { |
||
| 51 | $result = new SingleVoterResult(VotingDecisionEnum::ALLOWED()); |
||
| 52 | return $result; |
||
| 53 | } elseif ($result === false) { |
||
| 54 | $result = new SingleVoterResult(VotingDecisionEnum::DENIED()); |
||
| 55 | return $result; |
||
| 56 | } elseif ($result instanceof VotingDecisionEnum) { |
||
| 57 | $result = new SingleVoterResult($result); |
||
| 58 | return $result; |
||
| 59 | } |
||
| 60 | return $result; |
||
| 61 | } |
||
| 62 | } |
||
| 63 |