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 ( 4b9031...a37f2a )
by Pavel
03:27
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
     {
@@ -354,7 +354,7 @@  discard block
 block discarded – undo
354 354
      * Populate children relations for self and all descendants
355 355
      *
356 356
      * @param int $depth = null
357
-     * @return static
357
+     * @return ActiveRecord
358 358
      */
359 359
     public function populateTree($depth = null)
360 360
     {
@@ -892,7 +892,7 @@  discard block
 block discarded – undo
892 892
     }
893 893
 
894 894
     /**
895
-     * @param array $items
895
+     * @param string[] $items
896 896
      * @return string
897 897
      */
898 898
     protected function concatExpression($items)
@@ -903,6 +903,9 @@  discard block
 block discarded – undo
903 903
         return 'CONCAT(' . implode(',', $items) . ')';
904 904
     }
905 905
 
906
+    /**
907
+     * @param string $from
908
+     */
906 909
     protected function substringExpression($string, $from, $length)
907 910
     {
908 911
         if ($this->owner->getDb()->driverName === 'sqlite') {
Please login to merge, or discard this patch.