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 ( cc63dc...6993dc )
by Vadim
06:11
created
ActiveRecord.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -100,13 +100,13 @@
 block discarded – undo
100 100
             ];
101 101
         }
102 102
         
103
-        if($this->hasAttribute('lft')&&$this->hasAttribute('rgt')&&$this->hasAttribute('depth')){
103
+        if ($this->hasAttribute('lft') && $this->hasAttribute('rgt') && $this->hasAttribute('depth')) {
104 104
             $behaviors['tree'] = ArrayHelper::merge([
105 105
                 'class' => NestedSetsBehavior::className(),
106 106
                 'leftAttribute' => 'lft',
107 107
                 'rightAttribute' => 'rgt',
108 108
                 'depthAttribute' => 'depth',
109
-            ], ($this->hasAttribute('tree')?['treeAttribute' => 'tree']:[]));
109
+            ], ($this->hasAttribute('tree') ? ['treeAttribute' => 'tree'] : []));
110 110
         }
111 111
 
112 112
         return $behaviors;
Please login to merge, or discard this patch.
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Created by PhpStorm.
4
- * User: vadim
5
- * Date: 22.01.15
6
- * Time: 13:47
7
- */
3
+     * Created by PhpStorm.
4
+     * User: vadim
5
+     * Date: 22.01.15
6
+     * Time: 13:47
7
+     */
8 8
 
9 9
 namespace sibds\components;
10 10
 
Please login to merge, or discard this patch.
LockedBehavior.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
-     * Created by PhpStorm.
4
-     * User: vadim
5
-     * Date: 05.02.16
6
-     * Time: 12:57
7
-     */
3
+ * Created by PhpStorm.
4
+ * User: vadim
5
+ * Date: 05.02.16
6
+ * Time: 12:57
7
+ */
8 8
 
9 9
 namespace sibds\components;
10 10
 
Please login to merge, or discard this patch.
BeforeQueryTrait.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
                 $condition = array_merge($condition, $property->getValue($obj));
19 19
             }
20 20
         }
21
-        if($obj->hasAttribute($obj->removedAttribute))
21
+        if ($obj->hasAttribute($obj->removedAttribute))
22 22
             return  (new \sibds\behaviors\TrashQuery($obj))->findRemoved()->andFilterWhere($condition);
23 23
         else
24 24
             return parent::find()->andFilterWhere($condition);
Please login to merge, or discard this patch.
Braces   +5 added lines, -4 removed lines patch added patch discarded remove patch
@@ -18,9 +18,10 @@
 block discarded – undo
18 18
                 $condition = array_merge($condition, $property->getValue($obj));
19 19
             }
20 20
         }
21
-        if($obj->hasAttribute($obj->removedAttribute))
22
-            return  (new \sibds\behaviors\TrashQuery($obj))->findRemoved()->andFilterWhere($condition);
23
-        else
24
-            return parent::find()->andFilterWhere($condition);
21
+        if($obj->hasAttribute($obj->removedAttribute)) {
22
+                    return  (new \sibds\behaviors\TrashQuery($obj))->findRemoved()->andFilterWhere($condition);
23
+        } else {
24
+                    return parent::find()->andFilterWhere($condition);
25
+        }
25 26
     }
26 27
 }
Please login to merge, or discard this patch.