/home/techb158/immovalet.com/vendor/laravel/framework/src/Illuminate/Http
NameSizeModeActions
Client/-0755rm
Concerns/-0755rm
Exceptions/-0755rm
Middleware/-0755rm
Resources/-0755rm
Testing/-0755rm
composer.json12290644editdlrm
File.php1550644editdlrm
FileHelpers.php10010644editdlrm
JsonResponse.php33350644editdlrm
LICENSE.md10750644editdlrm
RedirectResponse.php59540644editdlrm
Request.php158040644editdlrm
Response.php30850644editdlrm
ResponseTrait.php38430644editdlrm
UploadedFile.php38250644editdlrm
Edit: /home/techb158/immovalet.com/vendor/laravel/framework/src/Illuminate/Http/FileHelpers.php (1001B)
getRealPath(); } /** * Get the file's extension. * * @return string */ public function extension() { return $this->guessExtension(); } /** * Get a filename for the file. * * @param string|null $path * @return string */ public function hashName($path = null) { if ($path) { $path = rtrim($path, '/').'/'; } $hash = $this->hashName ?: $this->hashName = Str::random(40); if ($extension = $this->guessExtension()) { $extension = '.'.$extension; } return $path.$hash.$extension; } }