eZ\Publish\Core\Persistence\Doctrine\AbstractDoctrineQuery::doBind PHP Метод

doBind() приватный Метод

This method must be called if you have used the bind methods in your query and you build the method yourself using build.
private doBind ( Statement $stmt )
$stmt Doctrine\DBAL\Statement
    private function doBind(Statement $stmt)
    {
        foreach ($this->boundValues as $key => $value) {
            $stmt->bindValue($key, $value, $this->boundValuesType[$key]);
        }
        foreach ($this->boundParameters as $key => &$value) {
            $stmt->bindParam($key, $value, $this->boundParametersType[$key]);
        }
    }