Tribe__Repository::__isset( string $name )

Whether the class has a property with the specific name or not.


Parameters

$name

(string) (Required)


Top ↑

Return

(bool)


Top ↑

Source

File: src/Tribe/Repository.php

	public function __isset( $name ) {
		return property_exists( $this, $name ) && isset( $this->{$name} );
	}

Top ↑

Changelog

Changelog
Version Description
4.7.19 Introduced.