| Conditions | 4 |
| Paths | 4 |
| Total Lines | 16 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 4.7691 |
| Changes | 3 | ||
| Bugs | 2 | Features | 0 |
| 1 | <?php |
||
| 22 | 1 | public function notify(TestResult $result) |
|
| 23 | { |
||
| 24 | 1 | if ($this->config['enabled'] === false) { |
|
| 25 | return; |
||
| 26 | } |
||
| 27 | |||
| 28 | 1 | $recipients = []; |
|
| 29 | |||
| 30 | 1 | foreach ($result->getTest()->getGroup()->getUsers() as $user) { |
|
| 31 | if ($user->shouldBeAlerted($result)) { |
||
| 32 | $recipients[] = $user->getEmail(); |
||
| 33 | } |
||
| 34 | 1 | } |
|
| 35 | |||
| 36 | 1 | $this->sendEmail($result, $recipients); |
|
| 37 | 1 | } |
|
| 38 | |||
| 57 |