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

src/Gbowo/Adapter/Amplifypay/AmplifypayAdapter.php 1 location

@@ 112-122 (lines=11) @@
109
     * @codeCoverageIgnore
110
     * @return \GuzzleHttp\Client
111
     */
112
    protected function setHttpClient() : Client
113
    {
114
        return new Client(
115
            [
116
            'base_uri' => self::BASE_URL,
117
            'headers' => [
118
                'Content-Type' => 'application/json',
119
                'Accept' => 'application/json',
120
                'Cache-Control' => 'no-cache'
121
            ]
122
            ]
123
        );
124
    }
125
}

src/Gbowo/Adapter/Paystack/PaystackAdapter.php 1 location

@@ 96-106 (lines=11) @@
93
     * @param string $token
94
     * @return \GuzzleHttp\Client
95
     */
96
    protected function setHttpClient(string $token) : Client
97
    {
98
        return new Client(
99
            [
100
            'base_uri' => $this->baseUrl,
101
            'headers' => [
102
                'Authorization' => 'Bearer ' . $token,
103
                'Content-Type' => 'application/json',
104
                'Accept' => 'application/json'
105
            ]
106
            ]
107
        );
108
    }
109
}