| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 69 | public function getHost() |
||
| 70 | { |
||
| 71 | if ($this->db->driverName === 'mysql') { |
||
| 72 | $pair = (new Query()) |
||
| 73 | ->from('information_schema.PROCESSLIST') |
||
| 74 | ->where('[[ID]] = CONNECTION_ID()') |
||
| 75 | ->limit(1) |
||
| 76 | ->select('HOST') |
||
| 77 | ->scalar(); |
||
| 78 | return substr($pair, 0, strrpos($pair, ':')); |
||
| 79 | } |
||
| 80 | |||
| 81 | return '127.0.0.1'; // By default |
||
| 82 | } |
||
| 84 |