/home/techb158/ileadtechnology.com/vendor/spatie/laravel-backup/src/Helpers
Edit: /home/techb158/ileadtechnology.com/vendor/spatie/laravel-backup/src/Helpers/File.php (1215B)
hasZipExtension($path)) {
return true;
}
return $this->hasAllowedMimeType($disk, $path);
}
protected function hasZipExtension(string $path): bool
{
return pathinfo($path, PATHINFO_EXTENSION) === 'zip';
}
protected function hasAllowedMimeType(?Filesystem $disk, string $path)
{
return in_array($this->mimeType($disk, $path), self::$allowedMimeTypes);
}
protected function mimeType(?Filesystem $disk, string $path)
{
try {
if ($disk && method_exists($disk, 'mimeType')) {
return $disk->mimeType($path) ?: false;
}
} catch (Exception $exception) {
// Some drivers throw exceptions when checking mime types, we'll
// just fallback to `false`.
}
return false;
}
}