We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0959ec commit 7a9a904Copy full SHA for 7a9a904
src/App/Mail/ExceptionOccurred.php
@@ -10,12 +10,10 @@ class ExceptionOccurred extends Mailable
10
{
11
use Queueable, SerializesModels;
12
13
- private $content;
+ private array $content;
14
15
/**
16
* Create a new message instance.
17
- *
18
- * @return void
19
*/
20
public function __construct($content)
21
@@ -24,10 +22,8 @@ public function __construct($content)
24
22
25
23
26
* Build the message.
27
28
- * @return $this
29
30
- public function build()
+ public function build(): Mailable
31
32
$emailsTo = str_getcsv(config('exceptions.emailExceptionsTo'), ',');
33
$ccEmails = str_getcsv(config('exceptions.emailExceptionCCto'), ',');
0 commit comments