OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
accscourse
/
inc
/
razorpay
/
src
Server IP: 10.0.0.4
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/27/2021 03:23:42 PM
rwxr-xr-x
📄
Addon.php
381 bytes
08/27/2021 03:22:08 PM
rw-rw-r--
📄
Api.php
1.61 KB
08/27/2021 03:22:31 PM
rw-rw-r--
📄
ArrayableInterface.php
177 bytes
08/27/2021 03:22:32 PM
rw-rw-r--
📄
Card.php
182 bytes
08/27/2021 03:22:02 PM
rw-rw-r--
📄
Collection.php
304 bytes
08/27/2021 03:22:29 PM
rw-rw-r--
📄
Customer.php
721 bytes
08/27/2021 03:22:23 PM
rw-rw-r--
📄
Entity.php
5.39 KB
08/27/2021 03:22:33 PM
rw-rw-r--
📁
Errors
-
08/27/2021 03:23:34 PM
rwxr-xr-x
📄
Invoice.php
2.32 KB
08/27/2021 03:22:27 PM
rw-rw-r--
📄
Order.php
563 bytes
08/27/2021 03:22:12 PM
rw-rw-r--
📄
Payment.php
1.79 KB
08/27/2021 03:22:22 PM
rw-rw-r--
📄
Plan.php
341 bytes
08/27/2021 03:22:34 PM
rw-rw-r--
📄
Refund.php
387 bytes
08/27/2021 03:22:06 PM
rw-rw-r--
📄
Request.php
5.81 KB
08/27/2021 03:22:25 PM
rw-rw-r--
📄
Resource.php
1.04 KB
08/27/2021 03:22:33 PM
rw-rw-r--
📄
Settlement.php
839 bytes
08/27/2021 03:22:18 PM
rw-rw-r--
📄
Subscription.php
755 bytes
08/27/2021 03:22:04 PM
rw-rw-r--
📄
Token.php
677 bytes
08/27/2021 03:22:10 PM
rw-rw-r--
📄
Transfer.php
1.41 KB
08/27/2021 03:22:20 PM
rw-rw-r--
📄
Utility.php
2.17 KB
08/27/2021 03:22:14 PM
rw-rw-r--
📄
VirtualAccount.php
749 bytes
08/27/2021 03:22:16 PM
rw-rw-r--
Editing: Resource.php
Close
<?php namespace Razorpay\Api; use ArrayAccess; use ArrayIterator; use IteratorAggregate; class Resource implements ArrayAccess, IteratorAggregate { protected $attributes = array(); public function getIterator() { return new ArrayIterator($this->attributes); } public function offsetExists($offset) { return (isset($this->attributes[$offset])); } public function offsetSet($offset, $value) { $this->attributes[$offset] = $value; } public function offsetGet($offset) { return $this->attributes[$offset]; } public function offsetUnset($offset) { unset($this->attributes[$offset]); } public function __get($key) { return $this->attributes[$key]; } public function __set($key, $value) { return $this->attributes[$key] = $value; } public function __isset($key) { return (isset($this->attributes[$key])); } public function __unset($key) { unset($this->attributes[$key]); } }