Completed
Push — master ( bfef45...da3286 )
by Vladimir
02:20
created
src/SoqlQuery.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -236,7 +236,7 @@
 block discarded – undo
236 236
      */
237 237
     public function order ($column, $direction = self::DEFAULT_ORDER_DIRECTION)
238 238
     {
239
-        $this->queryElements[self::ORDER_KEY][] = rawurlencode($column . " " . $direction);
239
+        $this->queryElements[self::ORDER_KEY][] = rawurlencode($column." ".$direction);
240 240
 
241 241
         return $this;
242 242
     }
Please login to merge, or discard this 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.