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/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.