1
0
Fork 0

Merge pull request #3778 from edhgoose/patch-1

Fix reference to getIO as per #3777
pull/3377/head
Jordi Boggiano 2015-02-25 19:44:34 +00:00
commit e5985a9b55
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ class Application extends BaseApplication
} }
if (isset($startTime)) { if (isset($startTime)) {
$this->getIO->writeError('<info>Memory usage: '.round(memory_get_usage() / 1024 / 1024, 2).'MB (peak: '.round(memory_get_peak_usage() / 1024 / 1024, 2).'MB), time: '.round(microtime(true) - $startTime, 2).'s'); $this->getIO()->writeError('<info>Memory usage: '.round(memory_get_usage() / 1024 / 1024, 2).'MB (peak: '.round(memory_get_peak_usage() / 1024 / 1024, 2).'MB), time: '.round(microtime(true) - $startTime, 2).'s');
} }
return $result; return $result;