OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
accscourse
/
inc
/
razorpay
Server IP: 10.0.0.4
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/27/2021 03:23:32 PM
rwxr-xr-x
📄
README.md
7.11 KB
08/27/2021 03:23:42 PM
rw-rw-r--
📄
Razorpay.php
1.27 KB
08/27/2021 03:23:41 PM
rw-rw-r--
📄
composer.json
1.06 KB
08/27/2021 03:23:42 PM
rw-rw-r--
📄
composer.lock
51.4 KB
08/27/2021 03:23:41 PM
rw-rw-r--
📄
doc.md
649 bytes
08/27/2021 03:23:41 PM
rw-rw-r--
📁
libs
-
08/27/2021 03:21:32 PM
rwxr-xr-x
📁
src
-
08/27/2021 03:22:34 PM
rwxr-xr-x
📄
version.txt
6 bytes
08/27/2021 03:23:42 PM
rw-rw-r--
Editing: doc.md
Close
This document talks about the implementation of the code for the Api. Everything comes under namespace Razorpay\Api\. Namespaces put a requirement of PHP 5.3 minimum ```php namespace Razorpay\ class Api { // Contains a __get function that returns the appropriate // class object when one tries to access them. } namespace Razorpay\ class Client { // Handles request and response // Uses Composer:Requests internally } class Payment { public function get($id) { } public function fetch($options) { } public function capture($id) { } public function refund($id) { } } ```