1: <?php declare(strict_types=1);
2:
3: namespace Salient\Core\Concern;
4:
5: use Salient\Contract\Core\Entity\Extensible;
6: use Salient\Core\Internal\ReadPropertyTrait;
7: use Salient\Core\Internal\WritePropertyTrait;
8:
9: /**
10: * @api
11: *
12: * @phpstan-require-implements Extensible
13: */
14: trait ExtensibleTrait
15: {
16: use ReadPropertyTrait;
17: use WritePropertyTrait;
18:
19: /**
20: * Normalised name => value
21: *
22: * @internal
23: *
24: * @var array<string,mixed>
25: */
26: protected $MetaProperties = [];
27:
28: /**
29: * Normalised name => first name passed to __set
30: *
31: * @internal
32: *
33: * @var array<string,string>
34: */
35: protected $MetaPropertyNames = [];
36:
37: /**
38: * @inheritDoc
39: */
40: public static function getDynamicPropertiesProperty(): string
41: {
42: return 'MetaProperties';
43: }
44:
45: /**
46: * @inheritDoc
47: */
48: public static function getDynamicPropertyNamesProperty(): string
49: {
50: return 'MetaPropertyNames';
51: }
52:
53: /**
54: * @inheritDoc
55: */
56: public function setDynamicProperties(array $values): void
57: {
58: $this->MetaProperties = [];
59: $this->MetaPropertyNames = [];
60:
61: foreach ($values as $name => $value) {
62: $this->__set($name, $value);
63: }
64: }
65:
66: /**
67: * @inheritDoc
68: */
69: public function getDynamicProperties(): array
70: {
71: foreach ($this->MetaProperties as $name => $value) {
72: $properties[$this->MetaPropertyNames[$name]] = $value;
73: }
74: return $properties ?? [];
75: }
76: }
77: