/home/techb158/immovalet.com/vendor/botble/platform/media/src/Chunks/Save
NameSizeModeActions
AbstractSave.php16820644editdlrm
ChunkSave.php52820644editdlrm
ParallelSave.php32000644editdlrm
Edit: /home/techb158/immovalet.com/vendor/botble/platform/media/src/Chunks/Save/AbstractSave.php (1682B)
file = $file; $this->handler = $handler; } /** * Checks if the file upload is finished. * * @return bool */ public function isFinished() { return $this->isValid(); } /** * Checks if the upload is valid. * * @return bool */ public function isValid() { return $this->file->isValid(); } /** * Returns the error message. * * @return string */ public function getErrorMessage() { return $this->file->getErrorMessage(); } /** * Passes all the function into the file. * * @param string $name * @param array $arguments * @return mixed */ public function __call($name, $arguments) { return call_user_func_array([$this->getFile(), $name], $arguments); } /** * @return UploadedFile */ public function getFile() { return $this->file; } /** * @return AbstractHandler */ public function handler() { return $this->handler; } }