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 ( c4aee6...c09989 )
by cao
17:10
created
src/DB/rules/select.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -113,6 +113,9 @@  discard block
 block discarded – undo
113 113
 
114 114
 class OrderByRule extends LimitRule
115 115
 {
116
+    /**
117
+     * @param Context $context
118
+     */
116 119
     public function __construct($context){
117 120
         parent::__construct($context);
118 121
         $this->order = new OrderByImpl();
@@ -260,7 +263,7 @@  discard block
 block discarded – undo
260 263
      *      "WHERE a=1 AND b IN(1,2) AND c BETWEEN 1 AND 2 AND d<>1"
261 264
      *
262 265
      * @param string|array|callable $conditions
263
-     * @param mixed $_
266
+     * @param string $_
264 267
      * @return \PhpBoot\DB\rules\select\NextWhereRule
265 268
      */
266 269
     public function where($conditions=null, $_=null) {
Please login to merge, or discard this patch.
src/DB/rules/update.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -25,6 +25,9 @@
 block discarded – undo
25 25
 
26 26
 class UpdateSetRule extends BasicRule
27 27
 {
28
+    /**
29
+     * @param Context $context
30
+     */
28 31
     public function __construct($context){
29 32
         parent::__construct($context);
30 33
         $this->impl = new UpdateSetImpl();
Please login to merge, or discard this patch.