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 ( 940f7c...e69234 )
by Robert
09:36
created
framework/web/AssetManager.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -328,7 +328,7 @@  discard block
 block discarded – undo
328 328
      * Returns the actual file path for the specified asset.
329 329
      * @param AssetBundle $bundle the asset bundle which the asset file belongs to
330 330
      * @param string $asset the asset path. This should be one of the assets listed in [[js]] or [[css]].
331
-     * @return string|bool the actual file path, or false if the asset is specified as an absolute URL
331
+     * @return string|false the actual file path, or false if the asset is specified as an absolute URL
332 332
      */
333 333
     public function getAssetPath($bundle, $asset)
334 334
     {
@@ -464,7 +464,7 @@  discard block
 block discarded – undo
464 464
     /**
465 465
      * Publishes a file.
466 466
      * @param string $src the asset file to be published
467
-     * @return array the path and the URL that the asset is published as.
467
+     * @return string[] the path and the URL that the asset is published as.
468 468
      * @throws InvalidParamException if the asset to be published does not exist.
469 469
      */
470 470
     protected function publishFile($src)
@@ -509,7 +509,7 @@  discard block
 block discarded – undo
509 509
      *   it is found in the target directory. This option is used only when publishing a directory.
510 510
      *   This overrides [[forceCopy]] if set.
511 511
      *
512
-     * @return array the path directory and the URL that the asset is published as.
512
+     * @return string[] the path directory and the URL that the asset is published as.
513 513
      * @throws InvalidParamException if the asset to be published does not exist.
514 514
      */
515 515
     protected function publishDirectory($src, $options)
Please login to merge, or discard this patch.