/**
* Set the preload manager
*
* @param PreloadManagerInterface $preloadManager The preload manager service
*
* @return Document instance of $this to allow chaining
*
* @since 4.0.0
*/
public function setPreloadManager(PreloadManagerInterface $preloadManager) : self
{
$this->preloadManager = $preloadManager;
return $this;
}