getParam('application'); } /** * Set Application * * @param ApplicationInterface $application * @return self */ public function setApplication(ApplicationInterface $application) { $this->setParam('application', $application); return $this; } /** * Get profiler * * @return string */ public function getProfiler() { return $this->getParam('profiler'); } /** * Set profiler * * @param Profiler $profiler * @return self */ public function setProfiler(Profiler $profiler) { $this->setParam('profiler', $profiler); return $this; } /** * Get report * * @return ReportInterface */ public function getReport() { return $this->getParam('report'); } /** * Set report * * @param ReportInterface $report * @return self */ public function setReport(ReportInterface $report) { $this->setParam('report', $report); return $this; } }