/home/techb158/ileadtechnology.com/vendor/tzsk/payu/src/Verifiers
Edit: /home/techb158/ileadtechnology.com/vendor/tzsk/payu/src/Verifiers/AbstractVerifier.php (1108B)
txnIds = $transaction_ids;
$this->config = new Config($account);
$this->client = new Client();
}
/**
* @param object $data
* @return PayuPayment
*/
protected function getInstance($data)
{
$request = new Request((array) $data);
$attributes = (new Processor($request))->process();
if ($this->config->getDriver() == 'database') {
return PayuPayment::find($attributes);
}
return new PayuPayment($attributes);
}
/**
* @return object
*/
abstract public function verify();
}