| @@ -63,7 +63,7 @@ discard block | ||
| 63 | 63 | |
| 64 | 64 | protected function setOptionIfMissing($name, $value) | 
| 65 | 65 |      { | 
| 66 | -        if (! isset($this->options[$name])) { | |
| 66 | +        if (!isset($this->options[$name])) { | |
| 67 | 67 | $this->options[$name] = $value; | 
| 68 | 68 | } | 
| 69 | 69 | } | 
| @@ -236,7 +236,7 @@ discard block | ||
| 236 | 236 | */ | 
| 237 | 237 | protected function getRemainingRelations($relations) | 
| 238 | 238 |      { | 
| 239 | -        if (! is_array($relations)) { | |
| 239 | +        if (!is_array($relations)) { | |
| 240 | 240 | return $relations; | 
| 241 | 241 | } | 
| 242 | 242 | |
| @@ -257,7 +257,7 @@ discard block | ||
| 257 | 257 |          if (is_array($guards)) { | 
| 258 | 258 |              foreach ($guards as $col => $val) { | 
| 259 | 259 | // guards that are strings (eg: 'deleted_at is null') can't be used as extra columns | 
| 260 | -                if (! is_int($col)) { | |
| 260 | +                if (!is_int($col)) { | |
| 261 | 261 | $cols[$col] = $val; | 
| 262 | 262 | } | 
| 263 | 263 | } |