Allow Document to receive null object

Those null object will be checked later by validation
This commit is contained in:
Julien Fastré 2018-09-13 20:55:38 +02:00
parent 3c1f36dc19
commit 823aee2264

View File

@ -162,7 +162,7 @@ class Document implements HasScopeInterface
return $this->object;
}
public function setObject(StoredObject $object)
public function setObject(StoredObject $object = null)
{
$this->object = $object;