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 ( ecf3ef...78a151 )
by Robert
11:40
created
framework/db/cubrid/QueryBuilder.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -211,6 +211,7 @@  discard block
 block discarded – undo
211 211
     /**
212 212
      * {@inheritdoc}
213 213
      * @since 2.0.8
214
+     * @param string $comment
214 215
      */
215 216
     public function addCommentOnColumn($table, $column, $comment)
216 217
     {
@@ -227,6 +228,7 @@  discard block
 block discarded – undo
227 228
     /**
228 229
      * {@inheritdoc}
229 230
      * @since 2.0.8
231
+     * @param string $comment
230 232
      */
231 233
     public function addCommentOnTable($table, $comment)
232 234
     {
Please login to merge, or discard this patch.
framework/db/oci/QueryBuilder.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 use yii\db\Expression;
15 15
 use yii\db\Query;
16 16
 use yii\helpers\StringHelper;
17
-use yii\db\ExpressionInterface;
18 17
 
19 18
 /**
20 19
  * QueryBuilder is the query builder for Oracle databases.
Please login to merge, or discard this patch.
framework/db/pgsql/QueryBuilder.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -245,6 +245,7 @@
 block discarded – undo
245 245
 
246 246
     /**
247 247
      * {@inheritdoc}
248
+     * @param string $table
248 249
      */
249 250
     public function insert($table, $columns, &$params)
250 251
     {
Please login to merge, or discard this patch.
framework/helpers/BaseFileHelper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -773,7 +773,7 @@
 block discarded – undo
773 773
      * @param string $pattern
774 774
      * @param bool $caseSensitive
775 775
      * @throws InvalidArgumentException
776
-     * @return array with keys: (string) pattern, (int) flags, (int|bool) firstWildcard
776
+     * @return string with keys: (string) pattern, (int) flags, (int|bool) firstWildcard
777 777
      */
778 778
     private static function parseExcludePattern($pattern, $caseSensitive)
779 779
     {
Please login to merge, or discard this patch.
framework/web/DbSession.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
 use yii\db\PdoValue;
14 14
 use yii\db\Query;
15 15
 use yii\di\Instance;
16
-use yii\helpers\ArrayHelper;
17 16
 
18 17
 /**
19 18
  * DbSession extends [[Session]] by using database as session data storage.
Please login to merge, or discard this patch.