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.
Passed
Push — master ( 8c6dcd...f90d5d )
by Alexander
33s
created
application/modules/shop/components/GoogleMerchants/DefaultHandler.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -80,6 +80,9 @@
 block discarded – undo
80 80
     }
81 81
 
82 82
 
83
+    /**
84
+     * @param string $relationName
85
+     */
83 86
     protected static function getRelation($model, $relationName, $default_value = '')
84 87
     {
85 88
         $result = $default_value;
Please login to merge, or discard this patch.
application/components/Controller.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -16,6 +16,9 @@  discard block
 block discarded – undo
16 16
     const EVENT_PRE_DECORATOR = 'pre-decorator';
17 17
     const EVENT_POST_DECORATOR = 'post-decorator';
18 18
 
19
+    /**
20
+     * @param string $methodName
21
+     */
19 22
     protected function renderDecorator($methodName, $view, $params = [])
20 23
     {
21 24
         /** @var \app\components\Response $response */
@@ -94,6 +97,7 @@  discard block
 block discarded – undo
94 97
 
95 98
     /**
96 99
      * @inheritdoc
100
+     * @param string $view
97 101
      */
98 102
     public function render($view, $params = [])
99 103
     {
@@ -102,6 +106,7 @@  discard block
 block discarded – undo
102 106
 
103 107
     /**
104 108
      * @inheritdoc
109
+     * @param string $view
105 110
      */
106 111
     public function renderAjax($view, $params = [])
107 112
     {
Please login to merge, or discard this patch.
application/backend/clients/YandexWebmasterOAuth.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     /**
21 21
      * Saves token in DB.
22 22
      * @param OAuthToken $token
23
-     * @return ApiService|null|\yii\db\ActiveQuery|\yii\db\ActiveRecord|static
23
+     * @return boolean
24 24
      */
25 25
     protected function saveAccessToken(OAuthToken $token)
26 26
     {
Please login to merge, or discard this patch.
application/backend/controllers/PropertiesController.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -24,6 +24,9 @@
 block discarded – undo
24 24
 
25 25
 class PropertiesController extends Controller
26 26
 {
27
+    /**
28
+     * @param string $slug
29
+     */
27 30
     protected function checkDoubledSlugs($slug)
28 31
     {
29 32
         if (empty($slug) === false) {
Please login to merge, or discard this patch.
application/backend/models/ApiService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
     /**
54 54
      * @param $name
55 55
      * @param $token
56
-     * @return ApiService|null|\yii\db\ActiveQuery|\yii\db\ActiveRecord
56
+     * @return boolean
57 57
      */
58 58
     public static function saveToken($name, OAuthToken $token)
59 59
     {
Please login to merge, or discard this patch.
application/extensions/DefaultTheme/widgets/CategoriesList/Widget.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     /**
16 16
      * Actual run function for all widget classes extending BaseWidget
17 17
      *
18
-     * @return mixed
18
+     * @return string
19 19
      */
20 20
     public function widgetRun()
21 21
     {
Please login to merge, or discard this patch.
DefaultTheme/widgets/OneRowHeaderWithCart/ExpandableSearchField.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
     /**
12 12
      * Actual run function for all widget classes extending BaseWidget
13 13
      *
14
-     * @return mixed
14
+     * @return string
15 15
      */
16 16
     public function run()
17 17
     {
Please login to merge, or discard this patch.
application/extensions/DefaultTheme/widgets/PagesList/Widget.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 
22 22
     /**
23 23
      * Actual run function for all widget classes extending BaseWidget
24
-     * @return mixed
24
+     * @return string
25 25
      */
26 26
     public function widgetRun()
27 27
     {
Please login to merge, or discard this patch.
application/models/Property.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -432,7 +432,7 @@
 block discarded – undo
432 432
     }
433 433
 
434 434
     /**
435
-     * @return array
435
+     * @return string[]
436 436
      */
437 437
     public static function getAliases()
438 438
     {
Please login to merge, or discard this patch.