-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
ReflectionEnumProperty.php
108 lines (90 loc) · 2.77 KB
/
ReflectionEnumProperty.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
<?php
declare(strict_types=1);
namespace Doctrine\ORM\Mapping;
use BackedEnum;
use ReflectionProperty;
use ReturnTypeWillChange;
use ValueError;
use function array_map;
use function get_class;
use function is_array;
class ReflectionEnumProperty extends ReflectionProperty
{
/** @var ReflectionProperty */
private $originalReflectionProperty;
/** @var class-string<BackedEnum> */
private $enumType;
/** @param class-string<BackedEnum> $enumType */
public function __construct(ReflectionProperty $originalReflectionProperty, string $enumType)
{
$this->originalReflectionProperty = $originalReflectionProperty;
$this->enumType = $enumType;
parent::__construct(
$originalReflectionProperty->getDeclaringClass()->getName(),
$originalReflectionProperty->getName()
);
}
/**
* {@inheritDoc}
*
* @param object|null $object
*
* @return int|string|int[]|string[]|null
*/
#[ReturnTypeWillChange]
public function getValue($object = null)
{
if ($object === null) {
return null;
}
$enum = $this->originalReflectionProperty->getValue($object);
if ($enum === null) {
return null;
}
if (is_array($enum)) {
return array_map(static function (BackedEnum $item): mixed {
return $item->value;
}, $enum);
}
return $enum->value;
}
/**
* @param object $object
* @param int|string|int[]|string[]|BackedEnum|BackedEnum[]|null $value
*/
public function setValue($object, $value = null): void
{
if ($value !== null) {
if (is_array($value)) {
$value = array_map(function ($item) use ($object): BackedEnum {
return $this->initializeEnumValue($object, $item);
}, $value);
} else {
$value = $this->initializeEnumValue($object, $value);
}
}
$this->originalReflectionProperty->setValue($object, $value);
}
/**
* @param object $object
* @param int|string|BackedEnum $value
*/
private function initializeEnumValue($object, $value): BackedEnum
{
if ($value instanceof BackedEnum) {
return $value;
}
$enumType = $this->enumType;
try {
return $enumType::from($value);
} catch (ValueError $e) {
throw MappingException::invalidEnumValue(
get_class($object),
$this->originalReflectionProperty->getName(),
(string) $value,
$enumType,
$e
);
}
}
}