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