@@ -30,7 +30,7 @@ discard block |
||
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 |
||
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 |