Tribe__Repository__Decorator::__isset( string $name )
Check if additional property on decorated object exists.
Contents
Parameters
- $name
-
(string) (Required) Property name.
Return
(bool)
Source
File: src/Tribe/Repository/Decorator.php
public function __isset( $name ) {
return isset( $this->decorated->{$name} );
}
Changelog
| Version | Description |
|---|---|
| 4.9.6.1 | Introduced. |