mirror of
https://we.phorge.it/source/phorge.git
synced 2025-03-03 16:09:17 +01:00
Summary: I'm pretty sure that `@group` annotations are useless now... see D9855. Also fixed various other minor issues. Test Plan: Eye-ball it. Reviewers: #blessed_reviewers, epriestley, chad Reviewed By: #blessed_reviewers, epriestley Subscribers: epriestley, Korvin, hach-que Differential Revision: https://secure.phabricator.com/D9859
36 lines
645 B
PHP
36 lines
645 B
PHP
<?php
|
|
|
|
/**
|
|
* Isolated HTTP sink for testing.
|
|
*/
|
|
final class AphrontIsolatedHTTPSink extends AphrontHTTPSink {
|
|
|
|
private $status;
|
|
private $headers;
|
|
private $data;
|
|
|
|
protected function emitHTTPStatus($code, $message = '') {
|
|
$this->status = $code;
|
|
}
|
|
|
|
protected function emitHeader($name, $value) {
|
|
$this->headers[] = array($name, $value);
|
|
}
|
|
|
|
protected function emitData($data) {
|
|
$this->data .= $data;
|
|
}
|
|
|
|
public function getEmittedHTTPStatus() {
|
|
return $this->status;
|
|
}
|
|
|
|
public function getEmittedHeaders() {
|
|
return $this->headers;
|
|
}
|
|
|
|
public function getEmittedData() {
|
|
return $this->data;
|
|
}
|
|
|
|
}
|