@@ -128,7 +128,7 @@ discard block |
||
| 128 | 128 | return in_array($key, $this->fillable); |
| 129 | 129 | } |
| 130 | 130 | |
| 131 | - public function getFillable(){ |
|
| 131 | + public function getFillable() { |
|
| 132 | 132 | return $this->fillable; |
| 133 | 133 | } |
| 134 | 134 | |
@@ -224,7 +224,7 @@ discard block |
||
| 224 | 224 | */ |
| 225 | 225 | public function exists() |
| 226 | 226 | { |
| 227 | - if (! array_key_exists($this->primaryKey, $this->attributes)) { |
|
| 227 | + if ( ! array_key_exists($this->primaryKey, $this->attributes)) { |
|
| 228 | 228 | return false; |
| 229 | 229 | } |
| 230 | 230 | |
@@ -249,7 +249,7 @@ discard block |
||
| 249 | 249 | |
| 250 | 250 | $attributes[$attribute] = []; |
| 251 | 251 | foreach ($collection as $value) { |
| 252 | - if (! empty($value->deferred)) { |
|
| 252 | + if ( ! empty($value->deferred)) { |
|
| 253 | 253 | $value->attributes = array_merge($value->attributes, $value->deferred); |
| 254 | 254 | } |
| 255 | 255 | |