| Conditions | 2 |
| Paths | 2 |
| Total Lines | 16 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 61 | public function shutdown() |
||
| 62 | {
|
||
| 63 | if (true === $this->config->path('app.devMode')) {
|
||
| 64 | $memory = number_format(memory_get_usage() / 1000000, 2); |
||
| 65 | $execution = number_format( |
||
| 66 | microtime(true) - $this->config->path('app.time'),
|
||
| 67 | 4 |
||
| 68 | ); |
||
| 69 | |||
| 70 | $this |
||
| 71 | ->logger |
||
| 72 | ->info( |
||
| 73 | sprintf( |
||
| 74 | 'Shutdown completed [%s]s - [%s]MB', |
||
| 75 | $execution, |
||
| 76 | $memory |
||
| 77 | ) |
||
| 82 |