@@ -191,6 +191,6 @@ |
||
| 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 | } |
@@ -51,7 +51,7 @@ |
||
| 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 | |