Yoast\WP\Lib
Abstract_Main::__isset()
Checks if the given property exists as a surface.
{} Это метод класса: Abstract_Main{}
Хуков нет.
Возвращает
true|false
. True when property is set.
Использование
$Abstract_Main = new Abstract_Main(); $Abstract_Main->__isset( $property );
- $property(строка) (обязательный)
- The property to retrieve.
Код Abstract_Main::__isset() Abstract Main:: isset Yoast 18.8
public function __isset( $property ) { return isset( $this->surfaces[ $property ] ); }