コード例 #1
0
ファイル: ResponseLauncher.php プロジェクト: RunnerLee/http
 /**
  * Constructor.
  *
  * @param mixed $content The response content, see setContent()
  * @param int   $status The response status code
  * @param array $headers An array of response headers
  *
  * @throws \InvalidArgumentException When the HTTP status code is not valid
  *
  * @api
  */
 public function __construct($content = '', $status = 200, array $headers = [])
 {
     parent::__construct($content, $status, $headers);
 }