Completed
Pull Request — master (#11)
by
unknown
06:23
created
examples/911calls.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     // Build a SoqlQuery with functions
23 23
     $soql = new SoqlQuery();
24 24
     $soql->where("within_circle(incident_location, {$_POST['latitude']}, {$_POST['longitude']}, {$_POST['range']})")
25
-         ->limit(20);
25
+            ->limit(20);
26 26
 
27 27
     // Get the dataset. $results is now an associative array in the same format as the JSON object
28 28
     $results = $ds->getDataset($soql);
Please login to merge, or discard this patch.
src/Utilities/UrlQuery.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -90,10 +90,10 @@
 block discarded – undo
90 90
 
91 91
         // Build up the headers we'll need to pass
92 92
         $this->headers = array(
93
-                             'Accept: application/json',
94
-                             'Content-type: application/json',
95
-                             'X-App-Token: ' . $this->token
96
-                         );
93
+                                'Accept: application/json',
94
+                                'Content-type: application/json',
95
+                                'X-App-Token: ' . $this->token
96
+                            );
97 97
 
98 98
         $this->configureCurl($email, $password);
99 99
     }
Please login to merge, or discard this patch.