Remove product literal strings in "pht()", part 5
[phabricator.git] / src / applications / files / uploadsource / PhabricatorExecFutureFileUploadSource.php
blob2e876c3e7a669bd301cde6c76ffe26e3b4d1f839
1 <?php
3 final class PhabricatorExecFutureFileUploadSource
4 extends PhabricatorFileUploadSource {
6 private $future;
8 public function setExecFuture(ExecFuture $future) {
9 $this->future = $future;
10 return $this;
13 public function getExecFuture() {
14 return $this->future;
17 protected function newDataIterator() {
18 $future = $this->getExecFuture();
20 return id(new LinesOfALargeExecFuture($future))
21 ->setDelimiter(null);
24 protected function getDataLength() {
25 return null;