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

src/Repository/Target/AudienceRepository.php 1 location

@@ 43-49 (lines=7) @@
40
     * @param ClientInterface $client
41
     * @param Cache|null      $cache
42
     */
43
    public function __construct(ClientInterface $client, Cache $cache = null)
44
    {
45
        $this->client       = $client;
46
        $this->cache        = $cache;
47
        $this->cacheEnabled = $cache instanceof Cache;
48
        $this->baseUrl      = self::BASE_URL;
49
    }
50
51
    /**
52
     * @return string

src/Repository/TraitRepository.php 1 location

@@ 52-59 (lines=8) @@
49
     * @param ClientInterface $client
50
     * @param Cache|null $cache
51
     */
52
    public function __construct(ClientInterface $client, Cache $cache = null)
53
    {
54
        $this->client = $client;
55
        $this->cache = $cache;
56
        $this->cacheEnabled = $cache instanceof Cache;
57
        $this->baseUrl = self::BASE_URL;
58
        $this->trendUrl = self::TRAITS_TREND_URL;
59
    }
60
61
    /**
62
     * @return string