Completed
Pull Request — master (#11)
by
unknown
06:23
created
examples/911calls.php 2 patches
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.
Braces   +10 added lines, -3 removed lines patch added patch discarded remove patch
@@ -37,7 +37,9 @@  discard block
 block discarded – undo
37 37
     <body>
38 38
         <h1>Seattle Police Department 911 Incident Response</h1>
39 39
 
40
-        <?php if (!$postBack) { ?>
40
+        <?php if (!$postBack)
41
+{
42
+?>
41 43
             <form method="POST">
42 44
                 <p>Query for all of the Seattle Fire 911 Calls calls within 500 meters of the Socrata offices in Seattle:</p>
43 45
                 <p>Try 47.59815, -122.334540 with a range of 500 meters</p>
@@ -56,7 +58,10 @@  discard block
 block discarded – undo
56 58
 
57 59
                 <input type="submit" value="Submit"/>
58 60
             </form>
59
-        <?php } else { ?>
61
+        <?php }
62
+else
63
+{
64
+?>
60 65
             <h2>Results</h2>
61 66
 
62 67
             <?php // Create a table for our actual data ?>
@@ -67,7 +72,9 @@  discard block
 block discarded – undo
67 72
                 </tr>
68 73
 
69 74
                 <?php // Loop through all of the results from the dataset ?>
70
-                <?php foreach($results as $row) { ?>
75
+                <?php foreach($results as $row)
76
+{
77
+?>
71 78
                     <tr>
72 79
                         <?php $timestamp = new DateTime($row["event_clearance_date"]); ?>
73 80
                         <td><?= $timestamp->format('Y-m-d h:ia') ?></td>
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.
src/SoqlQuery.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,9 @@
 block discarded – undo
87 87
      *
88 88
      * @since 0.1.0
89 89
      */
90
-    public function __construct () {}
90
+    public function __construct ()
91
+    {
92
+}
91 93
 
92 94
     /**
93 95
      * Convert the current information into a URL encoded query that can be appended to the domain
Please login to merge, or discard this patch.
docs/sami-config.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,8 @@
 block discarded – undo
34 34
  * Include this section if you want sami to document
35 35
  * private and protected functions/properties
36 36
  */
37
-$sami['filter'] = function () {
37
+$sami['filter'] = function ()
38
+{
38 39
     return new ApiFilter();
39 40
 };
40 41
 
Please login to merge, or discard this patch.