Completed
Pull Request — master (#75)
by
unknown
01:30
created

SendGridRequest::email()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7

Duplication

Lines 7
Ratio 100 %

Importance

Changes 0
Metric Value
dl 7
loc 7
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace BeyondCode\Mailbox\Http\Requests;
6
7
use BeyondCode\Mailbox\InboundEmail;
8
use Illuminate\Foundation\Http\FormRequest;
9
use Illuminate\Support\Facades\Validator;
10
11
class SendGridRequest extends MailboxRequest
12
{
13
14
}
15