-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathExtendedObject.php
44 lines (36 loc) · 1.32 KB
/
ExtendedObject.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
abstract class ExtendedObject implements \ArrayAccess {
/**
* Returns the value from object.
*
* @param $key Key name.
*/
abstract public function get($key);
/**
* Sets the value in object.
*
* @param $key Key name.
* @param $value New value.
*/
abstract public function set($key, $value);
/**
* Checks, exists value in object or not.
*
* @param $key Key name.
*/
abstract public function exists($key);
/**
* Deletes the value in object.
*
* @param $key Key name.
*/
abstract public function remove($key);
public function offsetExists($offset) { return $this->exists($offset); }
public function __isset($offset) { return $this->exists($offset); }
public function offsetUnset($offset) { $this->remove($offset); }
public function __unset($offset) { $this->remove($offset); }
public function offsetGet($offset) { return $this->get($offset); }
public function __get($offset) { return $this->get($offset); }
public function offsetSet($offset, $value) { $this->set($offset, $value); }
public function __set($offset, $value) { $this->set($offset, $value); }
}