| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 12 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 46 | public function stop($logNumber, $connection, $type, $output = '', $onError = false) | ||
| 47 |     { | ||
| 48 | $time = microtime(true) - $this->calls[$logNumber]['time']; | ||
| 49 | |||
| 50 | $this->calls[$logNumber] = array( | ||
| 51 | 'connection' => $connection, | ||
| 52 | 'type' => $type, | ||
| 53 | 'error' => $onError, | ||
| 54 | 'output' => $output, | ||
| 55 | 'time' => $time, | ||
| 56 | ); | ||
| 57 | } | ||
| 58 | |||
| 66 | } |