-
Notifications
You must be signed in to change notification settings - Fork 0
/
PropertiesBag.php
194 lines (170 loc) · 3.61 KB
/
PropertiesBag.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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
<?php
declare(strict_types=1);
namespace Peak\Collection;
use Peak\Blueprint\Collection\Dictionary;
use JsonSerializable;
use Exception;
use ArrayIterator;
use function array_key_exists;
use function count;
use function json_encode;
use function serialize;
use function unserialize;
class PropertiesBag implements Dictionary, JsonSerializable
{
/**
* @var array
*/
protected $properties = [];
/**
* Constructor.
* @param array $properties
*/
public function __construct(array $properties = [])
{
$this->properties = $properties;
}
/**
* @param string $prop
* @param null $default
* @return mixed
*/
public function get(string $prop, $default = null)
{
return $this->properties[$prop] ?? $default;
}
/**
* @param string $prop
* @param mixed $value
* @return mixed
*/
public function set(string $prop, $value)
{
$this->properties[$prop] = $value;
return $this;
}
/**
* @param string $prop
* @return bool
*/
public function has(string $prop): bool
{
return array_key_exists($prop, $this->properties);
}
/**
* @param string $property
* @return mixed
* @throws Exception
*/
public function &__get(string $property)
{
if (!array_key_exists($property, $this->properties)) {
throw new Exception('Property '.$property.' not found');
}
return $this->properties[$property];
}
/**
* @param string $property
* @param mixed $val
*/
public function __set(string $property, $val)
{
$this->properties[$property] = $val;
}
/**
* @param string $property
* @return bool
*/
public function __isset(string $property): bool
{
return array_key_exists($property, $this->properties);
}
/**
* @param string $property
*/
public function __unset(string $property)
{
unset($this->properties[$property]);
}
/**
* Assign a value to the specified offset
*
* @param string $offset
* @param mixed $value
*/
public function offsetSet($offset, $value)
{
$this->properties[$offset] = $value;
}
/**
* Whether an item exists
*
* @param string $offset
* @return bool
*/
public function offsetExists($offset): bool
{
return isset($this->properties[$offset]);
}
/**
* Item to delete
*
* @param string $offset
*/
public function offsetUnset($offset)
{
unset($this->properties[$offset]);
}
/**
* Offset to retrieve
*
* @param string $offset
* @return mixed
*/
public function offsetGet($offset)
{
return isset($this->properties[$offset]) ? $this->properties[$offset] : null;
}
/**
* @return int
*/
public function count()
{
return count($this->properties);
}
/**
* @return ArrayIterator
*/
public function getIterator()
{
return new ArrayIterator($this->properties);
}
/**
* @return array
*/
public function toArray()
{
return $this->properties;
}
/**
* @return string
*/
public function serialize()
{
return serialize($this->properties);
}
/**
* @param string $data
*/
public function unserialize($data)
{
$this->properties = unserialize($data);
}
/**
* @return array|mixed
*/
public function jsonSerialize()
{
return $this->properties;
}
}