GraphAware\Neo4j\Client\Transaction\Transaction::push PHP 메소드

push() 공개 메소드

Push a statement to the queue, without actually sending it.
public push ( string $statement, array $parameters = [], string | null $tag = null )
$statement string
$parameters array
$tag string | null
    public function push($statement, array $parameters = array(), $tag = null)
    {
        $this->queue[] = Statement::create($statement, $parameters, $tag);
    }