Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
39 | public function printLog() { |
||
40 | $timestamps = $this->log->getTimestamp(); |
||
41 | |||
42 | if(empty($timestamps)) { |
||
43 | return $this->table->nothingLogged(); |
||
44 | } |
||
45 | |||
46 | $memorypeak = $this->log->getMemoryPeak(); |
||
47 | $pageLoadTime = $this->log->getPageLoadTime(); |
||
48 | return $this->table->renderTimestampAsTable($timestamps, $memorypeak, $pageLoadTime); |
||
49 | } |
||
50 | |||
66 | } |