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