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 ( 096853...403d9f )
by Saphronov
03:53 queued 01:08
created
src/widgets/TbActiveForm.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -369,7 +369,7 @@  discard block
 block discarded – undo
369 369
 	 * Please check {@link CActiveForm::textField} for detailed information about $htmlOptions argument.
370 370
 	 * About $options argument parameters see {@link TbActiveForm} documentation.
371 371
 	 *
372
-	 * @param CModel $model The data model.
372
+	 * @param FakeModel $model The data model.
373 373
 	 * @param string $attribute The attribute.
374 374
 	 * @param array $options Group attributes.
375 375
 	 * @return string The generated text field group.
@@ -495,7 +495,7 @@  discard block
 block discarded – undo
495 495
 	 * Please check {@link CActiveForm::radioButton} for detailed information about $htmlOptions argument.
496 496
 	 * About $options argument parameters see {@link TbActiveForm} documentation.
497 497
 	 *
498
-	 * @param CModel $model The data model.
498
+	 * @param FakeModel $model The data model.
499 499
 	 * @param string $attribute The attribute.
500 500
 	 * @param array $options Group attributes.
501 501
 	 * @return string The generated radio button group.
@@ -546,7 +546,7 @@  discard block
 block discarded – undo
546 546
 	 * Please check {@link CActiveForm::checkbox} for detailed information about $htmlOptions argument.
547 547
 	 * About $options argument parameters see {@link TbActiveForm} documentation.
548 548
 	 *
549
-	 * @param CModel $model The data model.
549
+	 * @param FakeModel $model The data model.
550 550
 	 * @param string $attribute The attribute.
551 551
 	 * @param array $options Group attributes.
552 552
 	 * @return string The generated checkbox group.
@@ -997,7 +997,7 @@  discard block
 block discarded – undo
997 997
 	 * Read detailed information about $htmlOptions in {@link CActiveForm::textField} method.
998 998
 	 * About $options argument parameters see {@link TbActiveForm} documentation.
999 999
 	 *
1000
-	 * @param CModel $model The data model.
1000
+	 * @param FakeModel $model The data model.
1001 1001
 	 * @param string $attribute The attribute.
1002 1002
 	 * @param array $options Group attributes.
1003 1003
 	 * @return string The generated color picker group.
Please login to merge, or discard this patch.
src/widgets/TbEditableColumn.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -68,6 +68,10 @@
 block discarded – undo
68 68
     }
69 69
    
70 70
     //protected was removed due to https://github.com/vitalets/x-editable-yii/issues/63
71
+
72
+    /**
73
+     * @param integer $row
74
+     */
71 75
     public function renderDataCellContent($row, $data)
72 76
     {
73 77
         $isModel = $data instanceOf CModel;
Please login to merge, or discard this patch.
src/widgets/TbExtendedGridView.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -928,7 +928,7 @@
 block discarded – undo
928 928
 	 * This method will become `renderDataCell` after Yii 1.1.17 will be released
929 929
 	 * @see https://github.com/yiisoft/yii/pull/3571
930 930
 	 *
931
-	 * @param CGridColumn $column
931
+	 * @param TbDataColumn $column
932 932
 	 * @param integer $row
933 933
 	 */
934 934
 	private function renderDataCellProcessingSummariesIfNeeded($column, $row)
Please login to merge, or discard this patch.
src/widgets/TbGroupGridView.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -419,7 +419,7 @@
 block discarded – undo
419 419
 	 * need to rewrite this function as it is protected in CDataColumn: it is strange as all methods inside are public
420 420
 	 *
421 421
 	 * @param TbDataColumn $column
422
-	 * @param mixed $row
422
+	 * @param integer $row
423 423
 	 * @param mixed $data
424 424
 	 *
425 425
 	 * @return string
Please login to merge, or discard this patch.