RuntimePublicReflectionProperty
extends ReflectionProperty
in package
PHP Runtime Reflection Public Property - special overrides for public properties.
Table of Contents
- getValue() : mixed
- {@inheritDoc}
- setValue() : void
- {@inheritDoc}
Methods
getValue()
{@inheritDoc}
public
getValue([mixed $object = null ]) : mixed
Checks is the value actually exist before fetching it.
This is to avoid calling __get on the provided $object if it
is a Proxy.
Parameters
- $object : mixed = null
Return values
mixed —setValue()
{@inheritDoc}
public
setValue(object $object[, mixed $value = null ]) : void
Avoids triggering lazy loading via __set if the provided object
is a Proxy.
Parameters
- $object : object
- $value : mixed = null