site = $site; return $this; } /** * @return AphrontSite */ public function getSite() { return $this->site; } public function setApplication(PhabricatorApplication $application) { $this->application = $application; return $this; } /** * @return PhabricatorApplication */ public function getApplication() { return $this->application; } public function setController(AphrontController $controller) { $this->controller = $controller; return $this; } /** * @return AphrontController */ public function getController() { return $this->controller; } public function setURIData(array $uri_data) { $this->uriData = $uri_data; return $this; } /** * @return array */ public function getURIData() { return $this->uriData; } }