Hi,
I would like to get the full response time of the micro serving a request.
Is there any other easier, cleanier way rather than using the following pseudo code?
Thanks.
$app->before(function() use ($app) { var start = mictorime() });
$app->finish(function() use ($app) { log(microtime() - start) });