Skip to content

Commit 4404e66

Browse files
authored
Update MailCareRequest.php
1 parent 8a33895 commit 4404e66

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Http/Requests/MailCareRequest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ class MailCareRequest extends FormRequest
1010
public function rules()
1111
{
1212
return [
13-
"content_type" => "required|in:message/rfc2822",
13+
'content_type' => 'required|in:message/rfc2822',
1414
];
1515
}
1616

1717
public function prepareForValidation()
1818
{
1919
$this->merge([
20-
"content_type" => $this->headers->get("Content-type"),
20+
'content_type' => $this->headers->get('Content-type'),
2121
]);
2222
}
2323

0 commit comments

Comments
 (0)