Completed
Push — master ( e6ae53...3ea501 )
by Sam
10:01 queued 45s
created

Mailer::prepareHTMLSubmessage()   B

Complexity

Conditions 2
Paths 2

Size

Total Lines 24
Code Lines 16

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 2
eloc 16
nc 2
nop 1
dl 0
loc 24
rs 8.9713
c 0
b 0
f 0
1
<?php
2
3
namespace SilverStripe\Control\Email;
4
5
interface Mailer
6
{
7
8
    /**
9
     * @param Email $email
10
     * @return bool
11
     */
12
    public function send($email);
13
}
14