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 ( 33cff4...ba0ab4 )
by Robert
11:49
created
framework/behaviors/AttributeBehavior.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@
 block discarded – undo
129 129
      * This method is called by [[evaluateAttributes()]]. Its return value will be assigned
130 130
      * to the attributes corresponding to the triggering event.
131 131
      * @param Event $event the event that triggers the current attribute updating.
132
-     * @return mixed the attribute value
132
+     * @return string the attribute value
133 133
      */
134 134
     protected function getValue($event)
135 135
     {
Please login to merge, or discard this patch.
framework/db/ActiveRecord.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -323,7 +323,7 @@
 block discarded – undo
323 323
     /**
324 324
      * Returns the list of all attribute names of the model.
325 325
      * The default implementation will return all column names of the table associated with this AR class.
326
-     * @return array list of attribute names.
326
+     * @return integer[] list of attribute names.
327 327
      */
328 328
     public function attributes()
329 329
     {
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
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
      * Finds the related records and populates them into the primary models.
188 188
      * @param string $name the relation name
189 189
      * @param array $primaryModels primary models
190
-     * @return array the related models
190
+     * @return ActiveRecordInterface[] the related models
191 191
      * @throws InvalidConfigException if [[link]] is invalid
192 192
      */
193 193
     public function populateRelation($name, &$primaryModels)
@@ -343,7 +343,7 @@  discard block
 block discarded – undo
343 343
     }
344 344
 
345 345
     /**
346
-     * @param array $models
346
+     * @param ActiveRecordInterface[] $models
347 347
      * @param array $link
348 348
      * @param array $viaModels
349 349
      * @param array $viaLink
Please login to merge, or discard this patch.
framework/db/oci/Schema.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -54,6 +54,7 @@
 block discarded – undo
54 54
 
55 55
     /**
56 56
      * @inheritdoc
57
+     * @param string $name
57 58
      */
58 59
     public function quoteSimpleTableName($name)
59 60
     {
Please login to merge, or discard this patch.
framework/log/SyslogTarget.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -55,6 +55,7 @@
 block discarded – undo
55 55
 
56 56
     /**
57 57
      * @inheritdoc
58
+     * @return string
58 59
      */
59 60
     public function formatMessage($message)
60 61
     {
Please login to merge, or discard this patch.
framework/requirements/YiiRequirementChecker.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
      * Check the given requirements, collecting results into internal field.
61 61
      * This method can be invoked several times checking different requirement sets.
62 62
      * Use [[getResult()]] or [[render()]] to get the results.
63
-     * @param array|string $requirements requirements to be checked.
63
+     * @param string $requirements requirements to be checked.
64 64
      * If an array, it is treated as the set of requirements;
65 65
      * If a string, it is treated as the path of the file, which contains the requirements;
66 66
      * @return $this self instance.
Please login to merge, or discard this patch.
framework/web/Request.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -431,7 +431,7 @@
 block discarded – undo
431 431
      * If the parameter does not exist, the second parameter passed to this method will be returned.
432 432
      * @param string $name the parameter name
433 433
      * @param mixed $defaultValue the default parameter value if the parameter does not exist.
434
-     * @return mixed the parameter value
434
+     * @return string the parameter value
435 435
      * @see getBodyParams()
436 436
      * @see setBodyParams()
437 437
      */
Please login to merge, or discard this patch.
framework/widgets/LinkPager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -225,7 +225,7 @@
 block discarded – undo
225 225
     }
226 226
 
227 227
     /**
228
-     * @return array the begin and end pages that need to be displayed.
228
+     * @return integer[] the begin and end pages that need to be displayed.
229 229
      */
230 230
     protected function getPageRange()
231 231
     {
Please login to merge, or discard this patch.
framework/web/Response.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -750,7 +750,7 @@
 block discarded – undo
750 750
      * });
751 751
      * ```
752 752
      *
753
-     * @param string|array $url the URL to be redirected to. This can be in one of the following formats:
753
+     * @param string $url the URL to be redirected to. This can be in one of the following formats:
754 754
      *
755 755
      * - a string representing a URL (e.g. "http://example.com")
756 756
      * - a string representing a URL alias (e.g. "@example.com")
Please login to merge, or discard this patch.