Guzzle (v 6) を使用して、PHP クライアントから API サーバーへのリクエストをプロファイリングしようとしています。
Guzzle 5.3 には、これcomplete
とbefore
イベント処理があります。
class GuzzleProfiler implements SubscriberInterface
{
public function getEvents()
{
return [
'before' => ['onBefore'],
'complete' => ['onComplete']
];
}
public function onBefore(BeforeEvent $event, $name)
{
start_profiling();
}
public function onComplete(CompleteEvent $event, $name)
{
end_profiling();
}
}
しかし、v6でこれを行うにはどうすればよいですか?