Skip to content

Commit 094125c

Browse files
committed
wip
1 parent 1c2aec1 commit 094125c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/InboundEmail.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,6 @@ class InboundEmail extends Model
2222
'message'
2323
];
2424

25-
public static function fromMessage($message)
26-
{
27-
return new static([
28-
'message' => $message,
29-
]);
30-
}
31-
3225
protected static function boot()
3326
{
3427
parent::boot();
@@ -38,6 +31,13 @@ protected static function boot()
3831
});
3932
}
4033

34+
public static function fromMessage($message)
35+
{
36+
return new static([
37+
'message' => $message,
38+
]);
39+
}
40+
4141
public function id(): string
4242
{
4343
return $this->message()->getHeaderValue('Message-Id', str_random());

0 commit comments

Comments
 (0)