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::buildContent()   C

Complexity

Conditions 8
Paths 64

Size

Total Lines 39
Code Lines 21

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 27
CRAP Score 8

Importance

Changes 0
Metric Value
dl 0
loc 39
c 0
b 0
f 0
ccs 27
cts 27
cp 1
rs 5.3846
cc 8
eloc 21
nc 64
nop 1
crap 8
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