RuntimePublicReflectionProperty
extends ReflectionProperty
in package
PHP Runtime Reflection Public Property - special overrides for public properties.
Tags
Table of Contents
Methods
- getValue() : mixed
- {@inheritDoc}
- setValue() : void
- {@inheritDoc}
Methods
getValue()
{@inheritDoc}
public
getValue([mixed $object = null ]) : mixed
Returns the value of a public property without calling
__get
on the provided $object if it exists.
Parameters
- $object : mixed = null
setValue()
{@inheritDoc}
public
setValue(object|null $object[, mixed $value = null ]) : void
Avoids triggering lazy loading via __set
if the provided object
is a Proxy.
Parameters
- $object : object|null
- $value : mixed = null