Completed
Push — master ( 97f19f...33b234 )
by Haridarshan
03:17 queued 44s
created
src/Instagram.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
 			"client_secret" => $this->getClientSecret(),
152 152
 			"redirect_uri" => $this->getCallbackUrl(),
153 153
 			"code" => $code,
154
-            "state" => $this->state
154
+			"state" => $this->state
155 155
 		);
156 156
 			
157 157
 		$this->execute($path, $options, 'POST');
@@ -344,9 +344,9 @@  discard block
 block discarded – undo
344 344
 	* @access private
345 345
 	* @return string       random string
346 346
 	*/
347
-    private function generateState() {
348
-        return substr(md5(rand()), 0, 7);
349
-    }
347
+	private function generateState() {
348
+		return substr(md5(rand()), 0, 7);
349
+	}
350 350
 	
351 351
 	/*
352 352
 	* Check whether api rate limit is reached or not
Please login to merge, or discard this patch.