public function __construct($resource, $fileName, $contentType = null) { parent::__construct($resource); $this->fileName = $fileName; $this->contentType = $contentType; }
public function __construct($resource, $contentLength, $chunkedEncoding = false) { parent::__construct($resource); $this->contentLength = $contentLength; $this->chunkedEncoding = $chunkedEncoding; }