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
Pull Request — master (#87)
by
unknown
18:17
created
src/CloudFlare/Api.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -205,7 +205,7 @@
 block discarded – undo
205 205
         }
206 206
 
207 207
         //Removes null entries
208
-        $data = array_filter($data, function ($val) {
208
+        $data = array_filter($data, function($val){
209 209
             return !is_null($val);
210 210
         });
211 211
 
Please login to merge, or discard this patch.
src/CloudFlare/Zone/Settings.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
      */
64 64
     public function always_use_https($zone_identifier)
65 65
     {
66
-        return $this->get('zones/' . $zone_identifier . '/settings/always_use_https');
66
+        return $this->get('zones/'.$zone_identifier.'/settings/always_use_https');
67 67
     }
68 68
 
69 69
     /**
@@ -434,7 +434,7 @@  discard block
 block discarded – undo
434 434
         $data = array(
435 435
             'value' => $value
436 436
         );
437
-        return $this->patch('zones/' . $zone_identifier . '/settings/always_use_https', $data);
437
+        return $this->patch('zones/'.$zone_identifier.'/settings/always_use_https', $data);
438 438
     }
439 439
 
440 440
     /**
Please login to merge, or discard this patch.
src/CloudFlare/Zone/Firewall/UserAgentRules.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
             'description' => $description,
37 37
         ];
38 38
 
39
-        return $this->get('/zones/' . $zone_id . '/firewall/ua_rules', $data);
39
+        return $this->get('/zones/'.$zone_id.'/firewall/ua_rules', $data);
40 40
     }
41 41
 
42 42
     /**
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      */
50 50
     public function rule($zone_id, $identifier)
51 51
     {
52
-        return $this->get('/zones/' . $zone_id . '/firewall/ua_rules/' . $identifier);
52
+        return $this->get('/zones/'.$zone_id.'/firewall/ua_rules/'.$identifier);
53 53
     }
54 54
 
55 55
     /**
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
             'description'   => $description,
76 76
         ];
77 77
 
78
-        return $this->post('/zones/' . $zone_id . '/firewall/ua_rules', $data);
78
+        return $this->post('/zones/'.$zone_id.'/firewall/ua_rules', $data);
79 79
     }
80 80
 
81 81
     /**
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
             'description'   => $description,
103 103
         ];
104 104
 
105
-        return $this->patch('/zones/' . $zone_id . '/firewall/ua_rules/' . $identifier, $data);
105
+        return $this->patch('/zones/'.$zone_id.'/firewall/ua_rules/'.$identifier, $data);
106 106
     }
107 107
 
108 108
     /**
@@ -115,6 +115,6 @@  discard block
 block discarded – undo
115 115
      */
116 116
     public function delete_rule($zone_id, $identifier)
117 117
     {
118
-        return $this->delete('/zones/' . $zone_id . '/firewall/ua_rules/' . $identifier);
118
+        return $this->delete('/zones/'.$zone_id.'/firewall/ua_rules/'.$identifier);
119 119
     }
120 120
 }
Please login to merge, or discard this patch.