OXIESEC PANEL
- Current Dir:
/
/
home
/
u432548786
/
domains
/
it-tas.com
/
public_html
/
razorpay-php
/
src
Server IP: 191.96.63.230
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
01/20/2024 07:33:04 AM
rwxr-xr-x
📄
.src.php
0 bytes
01/20/2024 07:33:04 AM
rw-rw-rw-
📄
Addon.php
402 bytes
01/20/2024 07:32:19 AM
rw-rw-rw-
📄
Api.php
1.7 KB
01/20/2024 07:32:19 AM
rw-rw-rw-
📄
ArrayableInterface.php
190 bytes
01/20/2024 07:32:19 AM
rw-rw-rw-
📄
Card.php
196 bytes
01/20/2024 07:32:19 AM
rw-rw-rw-
📄
Collection.php
324 bytes
01/20/2024 07:32:19 AM
rw-rw-rw-
📄
Customer.php
761 bytes
01/20/2024 07:32:19 AM
rw-rw-rw-
📄
Entity.php
5.62 KB
01/20/2024 07:32:19 AM
rw-rw-rw-
📁
Errors
-
01/20/2024 07:32:19 AM
rwxr-xr-x
📄
Invoice.php
2.43 KB
01/20/2024 07:32:19 AM
rw-rw-rw-
📄
Order.php
594 bytes
01/20/2024 07:32:19 AM
rw-rw-rw-
📄
Payment.php
1.88 KB
01/20/2024 07:32:19 AM
rw-rw-rw-
📄
Plan.php
361 bytes
01/20/2024 07:32:19 AM
rw-rw-rw-
📄
Refund.php
410 bytes
01/20/2024 07:32:19 AM
rw-rw-rw-
📄
Request.php
6.03 KB
01/20/2024 07:32:19 AM
rw-rw-rw-
📄
Resource.php
1.09 KB
01/20/2024 07:32:19 AM
rw-rw-rw-
📄
Settlement.php
881 bytes
01/20/2024 07:32:19 AM
rw-rw-rw-
📄
Subscription.php
790 bytes
01/20/2024 07:32:19 AM
rw-rw-rw-
📄
Token.php
707 bytes
01/20/2024 07:32:19 AM
rw-rw-rw-
📄
Transfer.php
1.47 KB
01/20/2024 07:32:19 AM
rw-rw-rw-
📄
Utility.php
2.25 KB
01/20/2024 07:32:19 AM
rw-rw-rw-
📄
VirtualAccount.php
787 bytes
01/20/2024 07:32:19 AM
rw-rw-rw-
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]); } }