Completed
Push — master ( cb0af5...e26afc )
by Haridarshan
14:04 queued 05:18
created
src/Instagram.php 3 patches
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -129,13 +129,13 @@  discard block
 block discarded – undo
129 129
 	}
130 130
 	
131 131
 	/**
132
-	* Make URLs for user browser navigation.
133
-	*
134
-	* @param string $path
135
-	* @param array  $parameters
136
-	*
137
-	* @return string
138
-	*/
132
+	 * Make URLs for user browser navigation.
133
+	 *
134
+	 * @param string $path
135
+	 * @param array  $parameters
136
+	 *
137
+	 * @return string
138
+	 */
139 139
 	public function getUrl($path, array $parameters) {		
140 140
 		if (is_array($parameters)) {			
141 141
 			if (isset($parameters['scope']) && count(array_diff($parameters['scope'], $this->default_scopes)) === 0) {
@@ -436,9 +436,9 @@  discard block
 block discarded – undo
436 436
 	*
437 437
 	* @return string
438 438
 	*/
439
-    public function getAccessToken() {
440
-        return $this->access_token;
441
-    }
439
+	public function getAccessToken() {
440
+		return $this->access_token;
441
+	}
442 442
 		
443 443
 	/*
444 444
 	* Get a string containing the version of the library.
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -270,7 +270,7 @@
 block discarded – undo
270 270
 		$signature = $endpoint;
271 271
 		ksort($params);
272 272
 		
273
-		foreach($params as $key => $value) {
273
+		foreach ($params as $key => $value) {
274 274
 			$signature .= "|$key=$value";	
275 275
 		}
276 276
 					
Please login to merge, or discard this patch.
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Haridarshan\Instagram;
3 3
 
4
-use Haridarshan\Instagram\InstagramException;
5 4
 use GuzzleHttp\Client;
6
-use GuzzleHttp\Psr7;
7 5
 use GuzzleHttp\Exception\ClientException;
6
+use GuzzleHttp\Psr7;
7
+use Haridarshan\Instagram\InstagramException;
8 8
 
9 9
 /**
10 10
 * Instagram API class
Please login to merge, or discard this patch.