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 — master ( 10991c...ad4463 )
by Andreas
03:30
created

SerializedRequestAwareTrait::getRequest()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
/**
3
 */
4
5
namespace CommerceLeague\ActiveCampaign\MessageQueue;
6
7
/**
8
 * Interface SerializedRequestAwareInterface
9
 */
10
trait SerializedRequestAwareTrait
11
{
12
    /**
13
     * @var string
14
     */
15
    protected $serializedRequest;
16
17
    /**
18
     * @return string
19
     */
20
    public function getSerializedRequest(): string
21
    {
22
        return $this->serializedRequest;
23
    }
24
25
    /**
26
     * @param string $serializedRequest
27
     * @return SerializedRequestAwareTrait
28
     */
29
    public function setSerializedRequest(string $serializedRequest)
30
    {
31
        $this->serializedRequest = $serializedRequest;
32
        return $this;
33
    }
34
}
35