Tribe__Repository__Decorator::__get( string $name )
Handle getting additional property from decorated object.
Contents
Parameters
- $name
-
(string) (Required) Property name.
Return
(mixed)
Source
File: src/Tribe/Repository/Decorator.php
public function __get( $name ) {
return $this->decorated->{$name};
}
Changelog
| Version | Description |
|---|---|
| 4.9.6.1 | Introduced. |