Completed
Push — master ( 7c9133...99ee33 )
by Adrian
02:03
created
src/Relation/Relation.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
             }
Please login to merge, or discard this patch.