Completed
Branch master (f21d4f)
by Welling
08:22
created
Category
src/BaseClient.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -191,6 +191,6 @@
 block discarded – undo
191 191
      */
192 192
     public function buildPath($pathFormat, $variables = [])
193 193
     {
194
-        return vsprintf(ltrim($pathFormat,'/'), $variables);
194
+        return vsprintf(ltrim($pathFormat, '/'), $variables);
195 195
     }
196 196
 }
Please login to merge, or discard this patch.
src/BaseTableGateway.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
         $select = new Select($tableName);
52 52
 
53 53
         // Conditional to honor the active column, (does not check if column exists)
54
-        if (isset($conditions['active'])){
54
+        if (isset($conditions['active'])) {
55 55
             $select->where->equalTo('active', $conditions['active']);
56 56
         }
57 57
 
Please login to merge, or discard this patch.