| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 61 | public static function getDescription() : string |
||
| 62 | { |
||
| 63 | return 'Triggers the WebHemi\'s built-in timer and returns the data in array:'.PHP_EOL |
||
| 64 | . '\'start_time\': the time when the timer had been called (called automatically).'.PHP_EOL |
||
| 65 | . '\'end_time\': the time when the timer had been stopped (called in a template)'.PHP_EOL |
||
| 66 | . '\'duration\': the difference in seconds '.PHP_EOL |
||
| 67 | . '\'memory\': the maximum memory usage during the render in a human readable format '.PHP_EOL; |
||
| 68 | } |
||
| 69 | |||
| 80 |