* The unique id for the file.
* @var String
*/
- private $uniquieId;
+ private $uniqueId;
/**
* UploadFile constructor.
$this->filesize = filesize($location);
$this->processed = $processed;
$this->viewableImage = $viewableImage;
- $this->uniquieId = sha1(sha1_file($location) . sha1($location));
+ $this->uniqueId = sha1(sha1_file($location) . sha1($location));
if (@getimagesize($location) !== false) {
$this->isImage = true;
* @return String
*/
public function getUniqueFileId() {
- return $this->uniquieId;
+ return $this->uniqueId;
}
/**