/home/techb158/ileadtechnology.com/vendor/tzsk/payu/src/Helpers
Edit: /home/techb158/ileadtechnology.com/vendor/tzsk/payu/src/Helpers/Storage.php (1500B)
$value) {
if (property_exists($this, $key)) {
$this->{$key} = $value;
}
}
$this->boot();
}
/**
* @return void
*/
public function boot()
{
if (! $this->account) {
$this->account = config('payu.default');
}
}
/**
* @return string
*/
public function getStatusUrl()
{
return $this->status_url;
}
/**
* @return PayuPayment
*/
public function getModel()
{
return $this->model;
}
/**
* @return PayuPayment
*/
public function getPayment()
{
return $this->payment;
}
/**
* @return array
*/
public function getData()
{
return $this->data;
}
/**
* @return string
*/
public function getAccount()
{
return $this->account;
}
}