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 — master ( 28702e...8c7750 )
by Piotr
04:39
created
src/ZfTable/AbstractTable.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -232,7 +232,7 @@
 block discarded – undo
232 232
      * Rendering table
233 233
      *
234 234
      * @param string $type (html | dataTableAjaxInit | dataTableJson)
235
-     * @param null $template
235
+     * @param string $template
236 236
      * @throws Exception\InvalidArgumentException
237 237
      * @return string
238 238
      */
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
 use ZfTable\Params\AdapterArrayObject;
14 14
 use ZfTable\Table\Exception;
15 15
 use ZfTable\Options\ModuleOptions;
16
-
17 16
 use ZfTable\Form\TableForm;
18 17
 use ZfTable\Form\TableFilter;
19 18
 
Please login to merge, or discard this patch.
src/ZfTable/Controller/TableController.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -506,6 +506,9 @@
 block discarded – undo
506 506
     }
507 507
 
508 508
 
509
+    /**
510
+     * @param string $html
511
+     */
509 512
     public function htmlResponse($html)
510 513
     {
511 514
         $response = $this->getResponse();
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 use Zend\Db\ResultSet\ResultSet;
15 15
 use ZfTable\Params\AdapterDataTables;
16 16
 use ZfTable\Options\ModuleOptions;
17
-use ZfTable\AbstractTable;
18 17
 use Doctrine\ORM\EntityManager;
19 18
 
20 19
 class TableController extends AbstractActionController
Please login to merge, or discard this patch.
src/ZfTable/Header.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -306,7 +306,7 @@
 block discarded – undo
306 306
     /**
307 307
      * Set reference to table
308 308
      *
309
-     * @param $table
309
+     * @param AbstractTable $table
310 310
      * @return void|\ZfTable\AbstractCommon
311 311
      */
312 312
     public function setTable($table)
Please login to merge, or discard this patch.