-
-
Notifications
You must be signed in to change notification settings - Fork 328
/
Copy pathStdPropertyAccessor.php
72 lines (57 loc) · 2.11 KB
/
StdPropertyAccessor.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
<?php
/*
* This file is part of the Alice package.
*
* (c) Nelmio <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Nelmio\Alice\PropertyAccess;
use Nelmio\Alice\IsAServiceTrait;
use Nelmio\Alice\Throwable\Exception\PropertyAccess\NoSuchPropertyExceptionFactory;
use stdClass;
use Symfony\Component\PropertyAccess\PropertyAccessorInterface;
final class StdPropertyAccessor implements PropertyAccessorInterface
{
use IsAServiceTrait;
/**
* @var PropertyAccessorInterface
*/
private $decoratedPropertyAccessor;
public function __construct(PropertyAccessorInterface $decoratedPropertyAccessor)
{
$this->decoratedPropertyAccessor = $decoratedPropertyAccessor;
}
public function setValue(&$objectOrArray, $propertyPath, $value): void
{
if ($objectOrArray instanceof stdClass) {
$objectOrArray->{$propertyPath} = $value;
return;
}
$this->decoratedPropertyAccessor->setValue($objectOrArray, $propertyPath, $value);
}
public function getValue($objectOrArray, $propertyPath): mixed
{
if (false === $objectOrArray instanceof stdClass) {
return $this->decoratedPropertyAccessor->getValue($objectOrArray, $propertyPath);
}
if (false === isset($objectOrArray->{$propertyPath})) {
throw NoSuchPropertyExceptionFactory::createForUnreadablePropertyFromStdClass($propertyPath);
}
return $objectOrArray->{$propertyPath};
}
public function isWritable($objectOrArray, $propertyPath): bool
{
return ($objectOrArray instanceof stdClass)
? true
: $this->decoratedPropertyAccessor->isWritable($objectOrArray, $propertyPath);
}
public function isReadable($objectOrArray, $propertyPath): bool
{
return ($objectOrArray instanceof stdClass)
? isset($objectOrArray->{$propertyPath})
: $this->decoratedPropertyAccessor->isReadable($objectOrArray, $propertyPath);
}
}