We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f010067 commit 98043a8Copy full SHA for 98043a8
src/Illuminate/Queue/SerializesModels.php
@@ -36,6 +36,10 @@ public function __serialize()
36
continue;
37
}
38
39
+ if (method_exists($property, 'isVirtual') && $property->isVirtual()) {
40
+ continue;
41
+ }
42
+
43
$value = $this->getPropertyValue($property);
44
45
if ($property->hasDefaultValue() && $value === $property->getDefaultValue()) {
0 commit comments