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 ( 7072cb...30854f )
by Thorsten
11:16
created
phpmyfaq/ajaxservice.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -435,7 +435,7 @@  discard block
 block discarded – undo
435 435
             $mail->message = html_entity_decode(
436 436
                 $PMF_LANG['msgMailCheck'])."\n\n".
437 437
                 $faqConfig->get('main.titleFAQ').': '.
438
-                $faqConfig->getDefaultUrl().'admin/?action=editentry&id=' . $recordId;
438
+                $faqConfig->getDefaultUrl().'admin/?action=editentry&id='.$recordId;
439 439
             $result = $mail->send();
440 440
             unset($mail);
441 441
 
@@ -694,7 +694,7 @@  discard block
 block discarded – undo
694 694
             $votingData = array(
695 695
                 'record_id' => $recordId,
696 696
                 'vote' => $vote,
697
-                'user_ip' => $userIp, );
697
+                'user_ip' => $userIp,);
698 698
 
699 699
             if (!$faq->getNumberOfVotings($recordId)) {
700 700
                 $faq->addVoting($votingData);
@@ -832,7 +832,7 @@  discard block
 block discarded – undo
832 832
 
833 833
         $userData = array(
834 834
             'display_name' => $name,
835
-            'email' => $email, );
835
+            'email' => $email,);
836 836
         $success = $user->setUserData($userData);
837 837
 
838 838
         if (0 !== strlen($password) && 0 !== strlen($confirm)) {
@@ -867,13 +867,13 @@  discard block
 block discarded – undo
867 867
 
868 868
             if ($loginExist && ($email == $user->getUserData('email'))) {
869 869
                 $consonants = array(
870
-                    'b','c','d','f','g','h','j','k','l','m','n','p','r','s','t','v','w','x','y','z',
870
+                    'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'n', 'p', 'r', 's', 't', 'v', 'w', 'x', 'y', 'z',
871 871
                 );
872 872
                 $vowels = array(
873
-                    'a','e','i','o','u',
873
+                    'a', 'e', 'i', 'o', 'u',
874 874
                 );
875 875
                 $newPassword = '';
876
-                srand((double) microtime() * 1000000);
876
+                srand((double)microtime()*1000000);
877 877
                 for ($i = 1; $i <= 4; ++$i) {
878 878
                     $newPassword .= $consonants[rand(0, 19)];
879 879
                     $newPassword .= $vowels[rand(0, 4)];
Please login to merge, or discard this patch.