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
Pull Request — master (#5)
by Haru
06:38
created
MaterializedPathBehavior.php 1 patch
Doc Comments   +6 added lines, -1 removed lines patch added patch discarded remove patch
@@ -799,7 +799,7 @@  discard block
 block discarded – undo
799 799
     }
800 800
 
801 801
     /**
802
-     * @param array $items
802
+     * @param string[] $items
803 803
      * @return string
804 804
      */
805 805
     protected function concatExpression($items)
@@ -810,6 +810,11 @@  discard block
 block discarded – undo
810 810
         return 'CONCAT(' . implode(',', $items) . ')';
811 811
     }
812 812
 
813
+    /**
814
+     * @param string $string
815
+     * @param string $from
816
+     * @param string $length
817
+     */
813 818
     protected function substringExpression($string, $from, $length)
814 819
     {
815 820
         if ($this->owner->getDb()->driverName === 'sqlite') {
Please login to merge, or discard this patch.
tests/MaterializedPathBehaviorTestCase.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 use paulzi\materializedpath\tests\models\AttributeModeNode;
12 12
 use paulzi\materializedpath\tests\models\MultipleTreeNode;
13 13
 use paulzi\materializedpath\tests\models\Node;
14
-use Yii;
15 14
 
16 15
 /**
17 16
  * @author PaulZi <[email protected]>
Please login to merge, or discard this patch.