Skip to content

Commit 4ea48ec

Browse files
committed
refactor: Remove type docs
1 parent 691db2c commit 4ea48ec

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

src/App/Traits/ExceptionNotificationHandlerTrait.php

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@ trait ExceptionNotificationHandlerTrait
2828
* Report or log an exception.
2929
*
3030
* This is a great spot to send exceptions to Sentry, Bugsnag, etc.
31-
*
32-
* @param Throwable $exception
33-
* @return void
3431
*/
3532
public function report(Throwable $e): void
3633
{
@@ -51,11 +48,8 @@ public function report(Throwable $e): void
5148

5249
/**
5350
* Sends an email upon exception.
54-
*
55-
* @param Throwable $exception
56-
* @return void
5751
*/
58-
public function sendEmail(Throwable $exception)
52+
public function sendEmail(Throwable $exception): void
5953
{
6054
try {
6155
$hasDebugModeEnabled = app()->hasDebugModeEnabled();

0 commit comments

Comments
 (0)