コード例 #1
0
 /**
  * @param InvokeEvent $event
  */
 public function onAfterInvoke(InvokeEvent $event)
 {
     if (!$this->stopwatch) {
         return;
     }
     $this->stopwatch->stop('invoke ' . $event->getDirectRequest()->getRequestKey());
 }
コード例 #2
0
 /**
  * @param InvokeEvent $event
  */
 public function onAfterInvoke(InvokeEvent $event)
 {
     $event->setResult($this->converter->convert($event->getService(), $event->getResult()));
 }