| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 43 | public function query($host) { |
||
| 44 | if (getmxrr($host, $mx_records, $mx_weight) === false) { |
||
| 45 | $this->logger->debug("no MX records for host <$host> found"); |
||
| 46 | return false; |
||
| 47 | } |
||
| 48 | $this->logger->debug("found " . count($mx_records) . " MX records for host <$host>"); |
||
| 49 | |||
| 50 | // TODO: sort by weight |
||
| 51 | return $mx_records; |
||
| 52 | } |
||
| 53 | |||
| 55 |