/home/techb158/ileadtechnology.com/vendor/spatie/laravel-backup/src/Helpers
NameSizeModeActions
ConsoleOutput.php5380644editdlrm
File.php12150644editdlrm
Format.php7690644editdlrm
functions.php1310644editdlrm
RightAlignedTableStyle.php2300644editdlrm
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; } }