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 bd9915e commit c4b1678Copy full SHA for c4b1678
src/Http/Requests/PostmarkRequest.php
@@ -3,15 +3,15 @@
3
namespace BeyondCode\Mailbox\Http\Requests;
4
5
use BeyondCode\Mailbox\InboundEmail;
6
-use Illuminate\Foundation\Http\FormRequest;
7
use Illuminate\Support\Facades\Validator;
+use Illuminate\Foundation\Http\FormRequest;
8
9
class PostmarkRequest extends FormRequest
10
{
11
public function validator()
12
13
return Validator::make($this->all(), [
14
- 'RawEmail' => 'required'
+ 'RawEmail' => 'required',
15
]);
16
}
17
0 commit comments