forked from PrintNode/PrintNode-PHP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEntityDynamic.php
More file actions
78 lines (56 loc) · 1.43 KB
/
EntityDynamic.php
File metadata and controls
78 lines (56 loc) · 1.43 KB
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
<?php
namespace PrintNode;
abstract class EntityDynamic extends Entity
{
/**
* Reference to the client
* @var Client
*/
protected static $protectedProperties = array(
'client',
);
/**
* Set property on entity
* @param mixed $propertyName
* @param mixed $value
* @return void
*/
public function __set($propertyName, $value)
{
if (\in_array($propertyName, self::$protectedProperties)) {
throw new \PrintNode\Exception\InvalidArgumentException($propertyName . ' is a protected property.');
}
$this->$propertyName = $value;
}
/**
* Maps a json object to this entity
*
* @param string $json The JSON to map to this entity
* @return string
*/
public function mapValuesFromJson($json)
{
foreach ($json as $key => $value) {
$this->$key = $value;
}
return true;
}
/**
* Implements the jsonSerialize method
*
* @return string
*/
public function jsonSerialize() : mixed
{
$refClass = new \ReflectionClass($this);
$properties = get_object_vars($this);
$json = array();
foreach ($properties as $property => $value) {
if (in_array($property, self::$protectedProperties)) {
continue;
}
$json[$property] = $value;
}
return $json;
}
}