Tribe__Repository::__isset( string $name )
Whether the class has a property with the specific name or not.
Contents
Parameters
- $name
-
(string) (Required)
Return
(bool)
Source
File: src/Tribe/Repository.php
public function __isset( $name ) {
return property_exists( $this, $name ) && isset( $this->{$name} );
}
Changelog
| Version | Description |
|---|---|
| 4.7.19 | Introduced. |