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 ( 132f96...4054c1 )
by Pavel
37:01
created
MaterializedPathBehavior.php 1 patch
Doc Comments   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -343,7 +343,7 @@  discard block
 block discarded – undo
343 343
 
344 344
     /**
345 345
      * @param bool $asArray = false
346
-     * @return null|string|array
346
+     * @return string
347 347
      */
348 348
     public function getParentPath($asArray = false)
349 349
     {
@@ -355,7 +355,7 @@  discard block
 block discarded – undo
355 355
      *
356 356
      * @param int $depth = null
357 357
      * @param string|array $with = null
358
-     * @return static
358
+     * @return ActiveRecord
359 359
      */
360 360
     public function populateTree($depth = null, $with = null)
361 361
     {
@@ -910,7 +910,7 @@  discard block
 block discarded – undo
910 910
     }
911 911
 
912 912
     /**
913
-     * @param array $items
913
+     * @param string[] $items
914 914
      * @return string
915 915
      */
916 916
     protected function concatExpression($items)
@@ -921,6 +921,9 @@  discard block
 block discarded – undo
921 921
         return 'CONCAT(' . implode(',', $items) . ')';
922 922
     }
923 923
 
924
+    /**
925
+     * @param string $from
926
+     */
924 927
     protected function substringExpression($string, $from, $length)
925 928
     {
926 929
         if ($this->owner->getDb()->driverName === 'sqlite') {
Please login to merge, or discard this patch.