GraphAware\Neo4j\Client\Transaction\Transaction::push PHP Method

push() public method

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);
    }