public function correlate(ScopedContainerInterface $container)
 {
     parent::correlate($container);
     $this->bindFactoryProxy(HtmlDocument::class, function () {
         return $this->context;
     });
 }
 /**
  * {@inheritdoc}
  */
 public function correlate(ScopedContainerInterface $container)
 {
     parent::correlate($container);
     $this->bindFactoryProxy(DelegateExecutionInterface::class, function () {
         return new DelegateExecution($this->context);
     });
 }