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 ( 1b0ff5...fdecf9 )
by Alexsandr
74:11 queued 39:05
created
tests/bootstrap.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 defined('YII_DEBUG') or define('YII_DEBUG', true);
3 3
 defined('YII_ENV') or define('YII_ENV', 'test');
4
-require(__DIR__ . '/../vendor/autoload.php');
5
-require(__DIR__ . '/../vendor/yiisoft/yii2/Yii.php');
4
+require(__DIR__.'/../vendor/autoload.php');
5
+require(__DIR__.'/../vendor/yiisoft/yii2/Yii.php');
6 6
 
7 7
 Yii::setAlias('@tests', __DIR__);
8 8
 
Please login to merge, or discard this patch.
tests/models/Category.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,11 +19,11 @@
 block discarded – undo
19 19
         return [
20 20
             'ymlCategory' => [
21 21
                 'class' => YmlCategoryBehavior::className(),
22
-                'scope' => function ($model) {
22
+                'scope' => function($model) {
23 23
                     /** @var \yii\db\ActiveQuery $model */
24 24
                     $model->select(['id', 'name', 'parentId']);
25 25
                 },
26
-                'dataClosure' => function ($model) {
26
+                'dataClosure' => function($model) {
27 27
                     /** @var self $model */
28 28
                     return [
29 29
                         'id' => $model->id,
Please login to merge, or discard this patch.
src/YandexMarketYml.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@
 block discarded – undo
113 113
         if ($shop->dataProvider) {
114 114
             foreach ($shop->dataProvider->getModels() as $model) {
115 115
                 if (!($model instanceof YandexMarketOfferInterface)) {
116
-                    throw new InvalidConfigException("A model " . get_class($model) . " must implements " . YandexMarketOfferInterface::class);
116
+                    throw new InvalidConfigException("A model ".get_class($model)." must implements ".YandexMarketOfferInterface::class);
117 117
                 }
118 118
                 $shop->offers[] = $model->generateOffer();
119 119
             }
Please login to merge, or discard this patch.