/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/QrCode.php (1501B)
getEntityUrl() ; return $this->request('POST', $relativeUrl, $attributes); } /** * Fetch QR code details based QR id * @param $id * @return Entity|QrCode */ public function fetch($id) { $relativeUrl = "payments/". $this->getEntityUrl(). $id ; return $this->request('GET', $relativeUrl); } /** * Close the QR code based on id * @return Entity|QrCode */ public function close() { $relativeUrl = "payments/{$this->getEntityUrl()}{$this->id}/close" ; return $this->request('POST', $relativeUrl); } /** * Fetch all QR code details * @param array $options * @return Entity|QrCode */ public function all($options = array()) { $relativeUrl = "payments/". $this->getEntityUrl(); return $this->request('GET', $relativeUrl, $options); } /** * Fetch payments made to a QR Code based on QR id * @param array $options * @return Entity|QrCode */ public function fetchAllPayments($options = array()) { $relativeUrl = "payments/{$this->getEntityUrl()}{$this->id}/payments" ; return $this->request('GET', $relativeUrl, $options); } }