Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
marcogermani87 authored and github-actions[bot] committed Apr 30, 2024
1 parent a73a293 commit 063562e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Models/Email.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,13 @@ public static function boot()
array_pop($parts);
$folderPath = implode(DIRECTORY_SEPARATOR, $parts);
}
if (!is_dir($filePath) && file_exists($filePath)) {
if (! is_dir($filePath) && file_exists($filePath)) {
unlink($filePath);
}
}
}
$savePathRaw = storage_path('app'.DIRECTORY_SEPARATOR.$record->raw_body);
if (!is_dir($savePathRaw) && file_exists($savePathRaw)) {
if (! is_dir($savePathRaw) && file_exists($savePathRaw)) {
if (empty($folderPath)) {
$parts = explode(DIRECTORY_SEPARATOR, $savePathRaw);
array_pop($parts);
Expand Down

0 comments on commit 063562e

Please sign in to comment.