Skip to content

Commit

Permalink
Break info log Line length
Browse files Browse the repository at this point in the history
  • Loading branch information
belisarh committed Oct 28, 2020
1 parent 2269d60 commit 1311606
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Traits/Mailable.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,11 @@ public static function bootMailable()
});
});
} catch (\Illuminate\Database\QueryException $exception) {
\Log::info('Could not bind NovaMailEvents. NovaMail tables might not have migrated yet. This is typical when running fresh migrations during testing or local development.');
\Log::info(
'Could not bind NovaMailEvents. '
. 'NovaMail tables might not have migrated yet, '
. 'typical when running fresh migrations during testing or local development.'
);
}
}

Expand Down

0 comments on commit 1311606

Please sign in to comment.