/home/techb158/ileadtechnology.com/vendor/razorpay/razorpay/src
NameSizeModeActions
Errors/-0755rm
Addon.php5560644editdlrm
Api.php16480644editdlrm
ArrayableInterface.php1770644editdlrm
Card.php1820644editdlrm
Collection.php3080644editdlrm
Customer.php7210644editdlrm
Entity.php57060644editdlrm
FundAccount.php5220644editdlrm
Invoice.php23710644editdlrm
Item.php6540644editdlrm
Order.php9160644editdlrm
Payment.php50900644editdlrm
PaymentLink.php17830644editdlrm
PaymentPage.php5820644editdlrm
Plan.php3410644editdlrm
QrCode.php15010644editdlrm
Refund.php7520644editdlrm
Request.php60560644editdlrm
Resource.php11580644editdlrm
Settlement.php20030644editdlrm
Subscription.php22460644editdlrm
Token.php6770644editdlrm
Transfer.php14420644editdlrm
Utility.php26940644editdlrm
VirtualAccount.php13630644editdlrm
Webhook.php7270644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/razorpay/razorpay/src/VirtualAccount.php (1363B)
getEntityUrl() . $this->id . '/close'; return $this->request('POST', $relativeUrl); } public function payments($options = array()) { $relativeUrl = $this->getEntityUrl() . $this->id . '/payments'; return $this->request('GET', $relativeUrl, $options); } public function addReceiver($attributes = array()) { $relativeUrl = $this->getEntityUrl() . $this->id . '/receivers'; return $this->request('POST', $relativeUrl, $attributes); } public function addAllowedPayer($attributes = array()) { $relativeUrl = $this->getEntityUrl() . $this->id . '/allowed_payers'; return $this->request('POST', $relativeUrl, $attributes); } public function deleteAllowedPayer($allowedPlayerId) { $relativeUrl = $this->getEntityUrl() . $this->id . '/allowed_payers/'.$allowedPlayerId; return $this->request('DELETE', $relativeUrl); } }