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.
Completed
Push — 2.9 ( bef184...2c2010 )
by Thorsten
13:41
created
phpmyfaq/ajaxservice.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -686,7 +686,7 @@  discard block
 block discarded – undo
686 686
             $votingData = array(
687 687
                 'record_id' => $recordId,
688 688
                 'vote' => $vote,
689
-                'user_ip' => $userIp, );
689
+                'user_ip' => $userIp,);
690 690
 
691 691
             if (!$faq->getNumberOfVotings($recordId)) {
692 692
                 $faq->addVoting($votingData);
@@ -824,7 +824,7 @@  discard block
 block discarded – undo
824 824
 
825 825
         $userData = array(
826 826
             'display_name' => $name,
827
-            'email' => $email, );
827
+            'email' => $email,);
828 828
         $success = $user->setUserData($userData);
829 829
 
830 830
         if (0 !== strlen($password) && 0 !== strlen($confirm)) {
@@ -859,13 +859,13 @@  discard block
 block discarded – undo
859 859
 
860 860
             if ($loginExist && ($email == $user->getUserData('email'))) {
861 861
                 $consonants = array(
862
-                    'b','c','d','f','g','h','j','k','l','m','n','p','r','s','t','v','w','x','y','z',
862
+                    'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'n', 'p', 'r', 's', 't', 'v', 'w', 'x', 'y', 'z',
863 863
                 );
864 864
                 $vowels = array(
865
-                    'a','e','i','o','u',
865
+                    'a', 'e', 'i', 'o', 'u',
866 866
                 );
867 867
                 $newPassword = '';
868
-                srand((double) microtime() * 1000000);
868
+                srand((double)microtime()*1000000);
869 869
                 for ($i = 1; $i <= 4; ++$i) {
870 870
                     $newPassword .= $consonants[rand(0, 19)];
871 871
                     $newPassword .= $vowels[rand(0, 4)];
Please login to merge, or discard this patch.