GDS\Gateway\ProtoBuf::applyTransaction PHP 메소드

applyTransaction() 개인적인 메소드

Apply a transaction to an object
private applyTransaction ( $obj ) : mixed
$obj
리턴 mixed
    private function applyTransaction($obj)
    {
        if (null !== $this->str_next_transaction) {
            $obj->setTransaction($this->str_next_transaction);
            $this->str_next_transaction = null;
        }
        return $obj;
    }