Beispiel #1
0
 public function acceptContext($context)
 {
     $childContext = CommandContext::createCommandContextAsBeginChild($context);
     $this->processAcceptingChilden($childContext);
     if ($childContext->isEnabled()) {
         $context->addSql($childContext->getSql());
         $context->addBindVariables($childContext->getBindVariables());
         $context->addBindVariableTypes($childContext->getBindVariableTypes());
     }
 }