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

tests/Ogone/Tests/DirectLink/CreateAliasRequestTest.php 1 location

@@ 75-82 (lines=8) @@
72
     * @test
73
     * @expectedException \InvalidArgumentException
74
     */
75
    public function IsInvalidWithTooLongAlias()
76
    {
77
        $alias = new Alias(str_repeat('repeat', 10));
78
79
        $aliasRequest = $this->provideMinimalAliasRequest();
80
        $aliasRequest->setAlias($alias);
81
        $aliasRequest->validate();
82
    }
83
84
    /**
85
     * @test

tests/Ogone/Tests/DirectLink/DirectLinkPaymentRequestTest.php 1 location

@@ 76-83 (lines=8) @@
73
     * @test
74
     * @expectedException \InvalidArgumentException
75
     */
76
    public function IsInvalidWithTooLongAlias()
77
    {
78
        $alias = new Alias(str_repeat('repeat', 10));
79
80
        $directLinkPaymentRequest = $this->provideMinimalDirectLinkPaymentRequest();
81
        $directLinkPaymentRequest->setAlias($alias);
82
        $directLinkPaymentRequest->validate();
83
    }
84
85
    /**
86
     * @test