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 ( 64349c...f2add5 )
by soheil
06:43
created
src/Client/Helpers/StringCaseTransform.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
     {
44 44
         $term = preg_replace_callback(
45 45
             '/[\s_-](\w)/',
46
-            function ($matches) {
46
+            function($matches) {
47 47
                 return mb_strtoupper($matches[1]);
48 48
             },
49 49
             $term
Please login to merge, or discard this patch.
src/Client/Filter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -193,7 +193,7 @@
 block discarded – undo
193 193
         $field = SCT::toHyphen($field);
194 194
         $this->filters = array_filter(
195 195
             $this->filters,
196
-            static function ($filter) use ($field) {
196
+            static function($filter) use ($field) {
197 197
                 return mb_strpos($filter, $field) === false;
198 198
             },
199 199
             ARRAY_FILTER_USE_KEY
Please login to merge, or discard this patch.
src/AdobeConnectServiceProvider.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -33,22 +33,22 @@
 block discarded – undo
33 33
         $config = $this->getAdobeConfig();
34 34
         $entities = $config['entities'];
35 35
 
36
-        $this->app->bind(Client::class, function () {
36
+        $this->app->bind(Client::class, function() {
37 37
             return $this->processClient();
38 38
         });
39
-        $this->app->bind('adobe-connect.sco', function () use ($entities) {
39
+        $this->app->bind('adobe-connect.sco', function() use ($entities) {
40 40
             return $this->app->make($entities['sco']);
41 41
         });
42
-        $this->app->bind('adobe-connect.sco-record', function () use ($entities) {
42
+        $this->app->bind('adobe-connect.sco-record', function() use ($entities) {
43 43
             return $this->app->make($entities['sco-record']);
44 44
         });
45
-        $this->app->bind('adobe-connect.principal', function () use ($entities) {
45
+        $this->app->bind('adobe-connect.principal', function() use ($entities) {
46 46
             return $this->app->make($entities['principal']);
47 47
         });
48
-        $this->app->bind('adobe-connect.permission', function () use ($entities) {
48
+        $this->app->bind('adobe-connect.permission', function() use ($entities) {
49 49
             return $this->app->make($entities['permission']);
50 50
         });
51
-        $this->app->bind('adobe-connect.common-info', function () use ($entities) {
51
+        $this->app->bind('adobe-connect.common-info', function() use ($entities) {
52 52
             return $this->app->make($entities['common-info']);
53 53
         });
54 54
 
Please login to merge, or discard this patch.
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
@@ -15,8 +15,8 @@
 block discarded – undo
15 15
      */
16 16
     public function fill(array $attributes)
17 17
     {
18
-        foreach ($attributes as $name=>$value){
19
-            $this->$name=$value;
18
+        foreach ($attributes as $name=>$value) {
19
+            $this->$name = $value;
20 20
         }
21 21
         return $this;
22 22
     }
Please login to merge, or discard this patch.