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::configuredIpPoolShouldBeUsed()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 12
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 6
CRAP Score 3

Importance

Changes 0
Metric Value
dl 0
loc 12
ccs 6
cts 6
cp 1
rs 9.4285
c 0
b 0
f 0
cc 3
eloc 6
nc 3
nop 0
crap 3
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