You are here

function KalturaReportService::getGraph in Kaltura 6.2

File

kaltura_client/KalturaClient.php, line 5035

Class

KalturaReportService

Code

function getGraph() {
  $kparams = array();
  $this->client
    ->queueServiceActionCall("report", "getGraph", $kparams);
  if ($this->client
    ->isMultiRequest()) {
    return null;
  }
  $resultObject = $this->client
    ->doQueue();
  $this->client
    ->throwExceptionIfError($resultObject);
  $this->client
    ->validateObjectType($resultObject, "KalturaReportGraph");
  return $resultObject;
}