You are here

protected function AcquiaLiftAgent::getReporting in Acquia Lift Connector 7

Get a reference to this agent's reporting class.

Allows for delayed instantiation of reporting class.

File

plugins/agent_types/AcquiaLiftAgent.inc, line 584
Provides an agent type for Acquia Lift

Class

AcquiaLiftAgent

Code

protected function getReporting() {
  if (empty($this->reporting)) {
    $this->reporting = AcquiaLiftReportFactory::create($this, $this->liftAPI);
  }
  return $this->reporting;
}