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 ( df91a9...ba0a3c )
by Robert
36:22
created
framework/data/DataFilter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -350,7 +350,7 @@
 block discarded – undo
350 350
     /**
351 351
      * Detect attribute type from given validator.
352 352
      *
353
-     * @param Validator validator from which to detect attribute type.
353
+     * @param Validator Validator from which to detect attribute type.
354 354
      * @return string|null detected attribute type.
355 355
      * @since 2.0.14
356 356
      */
Please login to merge, or discard this patch.
framework/db/ActiveRelationTrait.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
      * Finds the related records and populates them into the primary models.
218 218
      * @param string $name the relation name
219 219
      * @param array $primaryModels primary models
220
-     * @return array the related models
220
+     * @return ActiveRecordInterface[] the related models
221 221
      * @throws InvalidConfigException if [[link]] is invalid
222 222
      */
223 223
     public function populateRelation($name, &$primaryModels)
@@ -383,7 +383,7 @@  discard block
 block discarded – undo
383 383
     }
384 384
 
385 385
     /**
386
-     * @param array $models
386
+     * @param ActiveRecordInterface[] $models
387 387
      * @param array $link
388 388
      * @param array $viaModels
389 389
      * @param null|self $viaQuery
Please login to merge, or discard this patch.
framework/db/conditions/SimpleConditionBuilder.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,6 @@
 block discarded – undo
10 10
 use yii\db\ExpressionBuilderInterface;
11 11
 use yii\db\ExpressionBuilderTrait;
12 12
 use yii\db\ExpressionInterface;
13
-use yii\db\Query;
14 13
 
15 14
 /**
16 15
  * Class NotConditionBuilder builds objects of [[SimpleCondition]]
Please login to merge, or discard this patch.
framework/db/Schema.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -424,7 +424,7 @@  discard block
 block discarded – undo
424 424
      * Executes the INSERT command, returning primary key values.
425 425
      * @param string $table the table that new rows will be inserted into.
426 426
      * @param array $columns the column data (name => value) to be inserted into the table.
427
-     * @return array|false primary key values or false if the command fails
427
+     * @return string primary key values or false if the command fails
428 428
      * @since 2.0.4
429 429
      */
430 430
     public function insert($table, $columns)
@@ -691,7 +691,7 @@  discard block
 block discarded – undo
691 691
     /**
692 692
      * Returns the cache key for the specified table name.
693 693
      * @param string $name the table name.
694
-     * @return mixed the cache key.
694
+     * @return string[] the cache key.
695 695
      */
696 696
     protected function getCacheKey($name)
697 697
     {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 block discarded – undo
15 15
 use yii\caching\Cache;
16 16
 use yii\caching\CacheInterface;
17 17
 use yii\caching\TagDependency;
18
-use yii\helpers\StringHelper;
19 18
 
20 19
 /**
21 20
  * Schema is the base class for concrete DBMS-specific schema classes.
Please login to merge, or discard this patch.