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 ( 6da855...0e1502 )
by Thorsten
18:09 queued 05:28
created
phpmyfaq/inc/PMF/Helper/Search.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -208,8 +208,8 @@  discard block
 block discarded – undo
208 208
         $confPerPage = $this->_config->get('records.numberOfRecordsPerPage');
209 209
         $numOfResults = $resultSet->getNumberOfResults();
210 210
 
211
-        $totalPages = ceil($numOfResults / $confPerPage);
212
-        $lastPage = $currentPage * $confPerPage;
211
+        $totalPages = ceil($numOfResults/$confPerPage);
212
+        $lastPage = $currentPage*$confPerPage;
213 213
         $firstPage = $lastPage - $confPerPage;
214 214
         if ($lastPage > $numOfResults) {
215 215
             $lastPage = $numOfResults;
@@ -286,7 +286,7 @@  discard block
 block discarded – undo
286 286
                 $oLink->itemTitle = $oLink->tooltip = $result->question;
287 287
 
288 288
                 $html .= '<li>';
289
-                $html .= $this->renderScore($result->score * 33);
289
+                $html .= $this->renderScore($result->score*33);
290 290
                 $html .= sprintf('<strong>%s</strong>: %s<br />',
291 291
                     $categoryInfo[0]['name'],
292 292
                     $oLink->toHtmlAnchor()
Please login to merge, or discard this patch.