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 ( 3b18d6...8b5860 )
by soheil
05:39
created
src/Client/Entities/CommonInfo.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
  */
49 49
 class CommonInfo
50 50
 {
51
-    use PropertyCaller,Fillable;
51
+    use PropertyCaller, Fillable;
52 52
 
53 53
     /**
54 54
      * Set the Date.
Please login to merge, or discard this patch.
src/Client/Entities/Permission.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
  */
27 27
 class Permission implements ArrayableInterface
28 28
 {
29
-    use Arrayable, PropertyCaller,Fillable;
29
+    use Arrayable, PropertyCaller, Fillable;
30 30
 
31 31
     /**
32 32
      * Special permission for Meeting.
Please login to merge, or discard this patch.
src/Client/Entities/SCORecord.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
  */
73 73
 class SCORecord
74 74
 {
75
-    use PropertyCaller,Fillable;
75
+    use PropertyCaller, Fillable;
76 76
 
77 77
     /**
78 78
      * Set if is Folder.
Please login to merge, or discard this patch.
src/Client/Entities/SCO.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
  */
75 75
 class SCO implements ArrayableInterface
76 76
 {
77
-    use Arrayable, PropertyCaller,Fillable;
77
+    use Arrayable, PropertyCaller, Fillable;
78 78
 
79 79
     /**
80 80
      * A viewable file uploaded to the server.
Please login to merge, or discard this patch.
src/Client/Traits/Fillable.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,8 +17,8 @@
 block discarded – undo
17 17
      */
18 18
     public function fill(array $attributes)
19 19
     {
20
-        foreach ($attributes as $name=>$value){
21
-            $this->__set($name,$value);
20
+        foreach ($attributes as $name=>$value) {
21
+            $this->__set($name, $value);
22 22
         }
23 23
         return $this;
24 24
     }
Please login to merge, or discard this patch.