1 | <?php |
||
15 | class ReflectionWriter implements PropertyWriterInterface |
||
16 | { |
||
17 | |||
18 | protected $onlyPublicProperties; |
||
19 | |||
20 | /** |
||
21 | * @param boolean $onlyPublicProperties ignore private or protected properties |
||
22 | */ |
||
23 | public function __construct($onlyPublicProperties = false) |
||
27 | |||
28 | /** |
||
29 | * @inheritDoc |
||
30 | */ |
||
31 | public function isWritable($object, $propertyPath) |
||
46 | |||
47 | /** |
||
48 | * @inheritDoc |
||
49 | */ |
||
50 | public function setValue(&$object, $propertyPath, $value) |
||
61 | } |