スクリプトにかかった時間、使用した実際のタスク名、実行した実際のアクションを出力するデバッグ ユーティリティを作成しようとしています。
<?php
$di = new Phalcon\DI\FactoryDefault\CLI();
$console = new \Phalcon\CLI\Console();
$console->setDI($di);
$console->handle($argv);
// something like this maybe???
$d = $console->getDI();
$d->get('dispatcher')->getTaskName();
?>
タスクとアクションの名前を取得するにはどうすればよいですか (argv から取得したくありません)。