forked from nelmio/alice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
StdPropertyAccessor.php
85 lines (70 loc) · 2.22 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
73
74
75
76
77
78
79
80
81
82
83
84
85
<?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 Symfony\Component\PropertyAccess\PropertyAccessorInterface;
final class StdPropertyAccessor implements PropertyAccessorInterface
{
use IsAServiceTrait;
/**
* @var PropertyAccessorInterface
*/
private $decoratedPropertyAccessor;
public function __construct(PropertyAccessorInterface $decoratedPropertyAccessor)
{
$this->decoratedPropertyAccessor = $decoratedPropertyAccessor;
}
/**
* @inheritdoc
*/
public function setValue(&$objectOrArray, $propertyPath, $value)
{
if ($objectOrArray instanceof \stdClass) {
$objectOrArray->{$propertyPath} = $value;
return;
}
$this->decoratedPropertyAccessor->setValue($objectOrArray, $propertyPath, $value);
}
/**
* @inheritdoc
*/
public function getValue($objectOrArray, $propertyPath)
{
if (false === $objectOrArray instanceof \stdClass) {
return $this->decoratedPropertyAccessor->getValue($objectOrArray, $propertyPath);
}
if (false === isset($objectOrArray->$propertyPath)) {
throw NoSuchPropertyExceptionFactory::createForUnreadablePropertyFromStdClass($propertyPath);
}
return $objectOrArray->$propertyPath;
}
/**
* @inheritdoc
*/
public function isWritable($objectOrArray, $propertyPath)
{
return ($objectOrArray instanceof \stdClass)
? true
: $this->decoratedPropertyAccessor->isWritable($objectOrArray, $propertyPath)
;
}
/**
* @inheritdoc
*/
public function isReadable($objectOrArray, $propertyPath)
{
return ($objectOrArray instanceof \stdClass)
? isset($objectOrArray->$propertyPath)
: $this->decoratedPropertyAccessor->isReadable($objectOrArray, $propertyPath)
;
}
}