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/Configuration/Configuration.php 2 locations

@@ 136-144 (lines=9) @@
133
        unset($this->values[$offset]);
134
    }
135
136
    public function load()
137
    {
138
        $values = Httpie::get($this->get('master_url') . '/load')
139
            ->body([
140
                'host' => $this->get('alias'),
141
            ])
142
            ->getJson();
143
        $this->update($values);
144
    }
145
146
    public function save()
147
    {
@@ 146-154 (lines=9) @@
143
        $this->update($values);
144
    }
145
146
    public function save()
147
    {
148
        Httpie::get($this->get('master_url') . '/save')
149
            ->body([
150
                'host' => $this->get('alias'),
151
                'config' => $this->persist(),
152
            ])
153
            ->getJson();
154
    }
155
156
    public function persist()
157
    {