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 = 9-9 lines in 2 locations

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

@@ 34-42 (lines=9) @@
31
        );
32
    }
33
34
    public function flow(FrameChannel $channel, Flow $command): Frame
35
    {
36
        return new Frame(
37
            Type::method(),
38
            $channel,
39
            Methods::get('channel.flow'),
40
            new Bits($command->active())
41
        );
42
    }
43
44
    public function flowOk(FrameChannel $channel, FlowOk $command): Frame
45
    {
@@ 44-52 (lines=9) @@
41
        );
42
    }
43
44
    public function flowOk(FrameChannel $channel, FlowOk $command): Frame
45
    {
46
        return new Frame(
47
            Type::method(),
48
            $channel,
49
            Methods::get('channel.flow-ok'),
50
            new Bits($command->active())
51
        );
52
    }
53
54
    public function close(FrameChannel $channel, Close $command): Frame
55
    {