Tribe__Repository__Decorator::__set( string $name, mixed $value )
Handle setting additional property on decorated object.
Contents
Parameters
- $name
-
(string) (Required) Property name.
- $value
-
(mixed) (Required) Property value.
Source
File: src/Tribe/Repository/Decorator.php
public function __set( $name, $value ) {
$this->decorated->{$name} = $value;
}
Changelog
| Version | Description |
|---|---|
| 4.9.6.1 | Introduced. |