Changeset View
Changeset View
Standalone View
Standalone View
src/aphront/response/AphrontProxyResponse.php
| Show All 33 Lines | public function getHeaders() { | ||||
| return $this->getProxy()->getHeaders(); | return $this->getProxy()->getHeaders(); | ||||
| } | } | ||||
| public function setCacheDurationInSeconds($duration) { | public function setCacheDurationInSeconds($duration) { | ||||
| $this->getProxy()->setCacheDurationInSeconds($duration); | $this->getProxy()->setCacheDurationInSeconds($duration); | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function setCanCDN($can_cdn) { | |||||
| $this->getProxy()->setCanCDN($can_cdn); | |||||
| return $this; | |||||
| } | |||||
| public function setLastModified($epoch_timestamp) { | public function setLastModified($epoch_timestamp) { | ||||
| $this->getProxy()->setLastModified($epoch_timestamp); | $this->getProxy()->setLastModified($epoch_timestamp); | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function setHTTPResponseCode($code) { | public function setHTTPResponseCode($code) { | ||||
| $this->getProxy()->setHTTPResponseCode($code); | $this->getProxy()->setHTTPResponseCode($code); | ||||
| return $this; | return $this; | ||||
| Show All 35 Lines | |||||