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

src/Core/Database.php 2 locations

@@ 129-136 (lines=8) @@
126
     * @param  array  $map
127
     * @return \PDOStatement
128
     */
129
    public function query($query, $map = [])
130
    {
131
        $statement = parent::exec($query, $map);
132
        $lastSQL = parent::last();
133
        Container::get('logger')->info($lastSQL);
134
        array_push(self::$queries, $lastSQL);
135
        return $statement;
136
    }
137
138
    /**
139
     * medoo:exec()
@@ 145-152 (lines=8) @@
142
     * @param  array  $map
143
     * @return \PDOStatement
144
     */
145
    public function exec($query, $map = [])
146
    {
147
        $statement = parent::exec($query, $map);
148
        $lastSQL = parent::last();
149
        Container::get('logger')->info($lastSQL);
150
        array_push(self::$queries, $lastSQL);
151
        return $statement;
152
    }
153
}
154