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/Phase/TakeATicket/DataSource/AbstractSql.php 2 locations

@@ 839-846 (lines=8) @@
836
     * @param $songId
837
     * @param array $platformIds
838
     */
839
    public function storeSongPlatformLinks($songId, array $platformIds)
840
    {
841
        $this->dbConn->delete('songs_x_platforms', ['songId' => $songId]);
842
843
        foreach ($platformIds as $platformId) {
844
            $this->dbConn->insert('songs_x_platforms', ['songId' => $songId, 'platformId' => $platformId]);
845
        }
846
    }
847
848
    /**
849
     * @param $name
@@ 894-901 (lines=8) @@
891
     * @param array $instrumentIds
892
     * @throws \Doctrine\DBAL\Exception\InvalidArgumentException
893
     */
894
    public function storeSongInstrumentLinks($songId, array $instrumentIds)
895
    {
896
        $this->dbConn->delete('songs_x_instruments', ['songId' => $songId]);
897
898
        foreach ($instrumentIds as $instrumentId) {
899
            $this->dbConn->insert('songs_x_instruments', ['songId' => $songId, 'instrumentId' => $instrumentId]);
900
        }
901
    }
902
903
    /**
904
     * @param $songId