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 (#80)
by
unknown
04:38
created
src/CloudFlare/Zone/SSL.php 1 patch
Indentation   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -98,28 +98,28 @@
 block discarded – undo
98 98
     }
99 99
     
100 100
     /**
101
-	 * Get SSL Verification Info for a Zone (permission needed: #ssl:read)
102
-	 * https://api.cloudflare.com/#ssl-verification-properties
103
-	 *
104
-	 * @param string $zone_identifier API item identifier tag
105
-	 */
106
-	public function free_ssl_status($zone_identifier)
107
-	{
108
-		return $this->get('zones/'.$zone_identifier.'/ssl/verification');
109
-	}
101
+     * Get SSL Verification Info for a Zone (permission needed: #ssl:read)
102
+     * https://api.cloudflare.com/#ssl-verification-properties
103
+     *
104
+     * @param string $zone_identifier API item identifier tag
105
+     */
106
+    public function free_ssl_status($zone_identifier)
107
+    {
108
+        return $this->get('zones/'.$zone_identifier.'/ssl/verification');
109
+    }
110 110
 
111
-	/**
112
-	 * Immediately retry SSL verification (permission needed: #ssl:edit)
113
-	 * https://api.cloudflare.com/#ssl-verification-properties
114
-	 *
115
-	 * @param string $zone_identifier API item identifier tag
116
-	 */
117
-	public function free_ssl_retry($zone_identifier)
118
-	{
119
-		$data = [
120
-			'retry' => true
121
-		];
111
+    /**
112
+     * Immediately retry SSL verification (permission needed: #ssl:edit)
113
+     * https://api.cloudflare.com/#ssl-verification-properties
114
+     *
115
+     * @param string $zone_identifier API item identifier tag
116
+     */
117
+    public function free_ssl_retry($zone_identifier)
118
+    {
119
+        $data = [
120
+            'retry' => true
121
+        ];
122 122
 
123
-		return $this->get('zones/'.$zone_identifier.'/ssl/verification', $data);
124
-	}
123
+        return $this->get('zones/'.$zone_identifier.'/ssl/verification', $data);
124
+    }
125 125
 }
Please login to merge, or discard this patch.