-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathMagicMapTrait.php
144 lines (125 loc) · 3.23 KB
/
MagicMapTrait.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<?php
namespace Swaggest\JsonSchema;
trait MagicMapTrait
{
protected $__arrayOfData = array();
/**
* @param string $name
* @param mixed $column
* @return static
*/
public function __set($name, $column)
{
$this->__arrayOfData[$name] = $column;
return $this;
}
public function &__get($name)
{
if (isset($this->__arrayOfData[$name])) {
return $this->__arrayOfData[$name];
} else {
$tmp = null;
return $tmp;
}
}
#[\ReturnTypeWillChange]
public function offsetExists($offset): bool
{
return array_key_exists($offset, $this->__arrayOfData);
}
#[\ReturnTypeWillChange]
public function &offsetGet($offset): mixed
{
if (isset($this->__arrayOfData[$offset])) {
return $this->__arrayOfData[$offset];
} else {
$tmp = null;
return $tmp;
}
}
#[\ReturnTypeWillChange]
public function offsetSet($offset, $value): void
{
$this->__set($offset, $value);
}
#[\ReturnTypeWillChange]
public function offsetUnset($offset): void
{
unset($this->__arrayOfData[$offset]);
}
public function &toArray()
{
return $this->__arrayOfData;
}
#[\ReturnTypeWillChange]
public function jsonSerialize(): mixed
{
return (object)$this->__arrayOfData;
}
/** @var \ArrayIterator */
private $iterator;
/**
* Return the current element
* @link http://php.net/manual/en/iterator.current.php
* @return mixed Can return any type.
* @since 5.0.0
*/
#[\ReturnTypeWillChange]
public function current(): mixed
{
return $this->iterator->current();
}
/**
* Move forward to next element
* @link http://php.net/manual/en/iterator.next.php
* @return void Any returned value is ignored.
* @since 5.0.0
*/
#[\ReturnTypeWillChange]
public function next(): void
{
$this->iterator->next();
}
/**
* Return the key of the current element
* @link http://php.net/manual/en/iterator.key.php
* @return mixed scalar on success, or null on failure.
* @since 5.0.0
*/
#[\ReturnTypeWillChange]
public function key(): mixed
{
return $this->iterator->key();
}
/**
* Checks if current position is valid
* @link http://php.net/manual/en/iterator.valid.php
* @return boolean The return value will be casted to boolean and then evaluated.
* Returns true on success or false on failure.
* @since 5.0.0
*/
#[\ReturnTypeWillChange]
public function valid(): bool
{
return $this->iterator->valid();
}
/**
* Rewind the Iterator to the first element
* @link http://php.net/manual/en/iterator.rewind.php
* @return void Any returned value is ignored.
* @since 5.0.0
*/
#[\ReturnTypeWillChange]
public function rewind(): void
{
$this->iterator = new \ArrayIterator($this->__arrayOfData);
}
public function __isset($name)
{
if (isset($this->__arrayOfData[$name])) {
return true;
} else {
return isset($this->$name);
}
}
}