Passed
Push — master ( bd47ef...50f6d4 )
by Oliver
10:42
created
src/BoxedCode/Eloquent/Meta/FluentMeta.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      */
31 31
     protected function getClassColumns($class)
32 32
     {
33
-        if (! isset(static::$model_table_columns[$class])) {
33
+        if (!isset(static::$model_table_columns[$class])) {
34 34
             static::$model_table_columns[$class] = $this->getConnection()
35 35
                 ->getSchemaBuilder()
36 36
                 ->getColumnListing($this->getTable());
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     {
51 51
         return property_exists($this, $name)
52 52
             || method_exists($this, $name)
53
-            || ! is_null($this->getAttribute($name))
53
+            || !is_null($this->getAttribute($name))
54 54
             || in_array($name, $this->getClassColumns(static::class));
55 55
     }
56 56
 
Please login to merge, or discard this patch.