Completed
Push — master ( 3e3b4d...dcc574 )
by Gabriel
02:53
created

Sendgrid::send()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 3
rs 10
cc 1
eloc 1
nc 1
nop 1
1
<?php
2
3
namespace Omnimail;
4
5
use Psr\Log\LoggerInterface;
6
7
class Sendgrid implements EmailSenderInterface
8
{
9
    private $logger;
10
11
    /**
12
     * @param LoggerInterface|null $logger
13
     */
14
    public function __construct(LoggerInterface $logger = null)
15
    {
16
        $this->logger = $logger;
17
    }
18
19
    public function send(EmailInterface $email)
20
    {
21
    }
22
}
23