GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — develop ( 945ba9...4d4e34 )
by Jasper
07:02
created

PayloadBuilder::buildRecipient()   B

Complexity

Conditions 6
Paths 32

Size

Total Lines 32
Code Lines 19

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 18
CRAP Score 6

Importance

Changes 0
Metric Value
dl 0
loc 32
c 0
b 0
f 0
ccs 18
cts 18
cp 1
rs 8.439
cc 6
eloc 19
nc 32
nop 6
crap 6
1
<?php
2
3
/**
4
 * @license https://github.com/f500/swiftmailer-sparkpost/blob/master/LICENSE MIT
5
 */
6
7
namespace SwiftSparkPost;
8
9
use Swift_Mime_Message;
10
11
/**
12
 * @copyright Future500 B.V.
13
 * @author    Jasper N. Brouwer <[email protected]>
14
 */
15
interface PayloadBuilder
16
{
17
    /**
18
     * @param Swift_Mime_Message $message
19
     *
20
     * @return array
21
     */
22
    public function buildPayload(Swift_Mime_Message $message);
23
}
24