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.

Code Duplication    Length = 10-10 lines in 2 locations

src/Transport/Protocol/v091/Basic.php 2 locations

@@ 35-44 (lines=10) @@
32
33
final class Basic implements BasicInterface
34
{
35
    public function ack(FrameChannel $channel, Ack $command): Frame
36
    {
37
        return new Frame(
38
            Type::method(),
39
            $channel,
40
            Methods::get('basic.ack'),
41
            new UnsignedLongLongInteger(new Integer($command->deliveryTag())),
42
            new Bits($command->isMultiple())
43
        );
44
    }
45
46
    public function cancel(FrameChannel $channel, Cancel $command): Frame
47
    {
@@ 132-141 (lines=10) @@
129
        );
130
    }
131
132
    public function reject(FrameChannel $channel, Reject $command): Frame
133
    {
134
        return new Frame(
135
            Type::method(),
136
            $channel,
137
            Methods::get('basic.reject'),
138
            new UnsignedLongLongInteger(new Integer($command->deliveryTag())),
139
            new Bits($command->shouldRequeue())
140
        );
141
    }
142
}
143