Beispiel #1
0
 public function topWSByAction($range = null, $action = null, $max = -1)
 {
     if ($range === null) {
         $range = $this->getYesterdayRange();
     }
     if ($action === null) {
         $action = LogWorkspaceToolReadEvent::ACTION;
     }
     $resultData = $this->logRepository->topWSByAction($range, $action, $max);
     return $resultData;
 }