You appear to be a bot. Output may be restricted
Description
Checks if the given property exists as a surface.
Usage
$bool = Abstract_Main::__isset( $property );
Parameters
- $property
- ( string ) required – The property to retrieve.
Returns
bool True when property is set.
Source
File name: wordpress-seo/lib/abstract-main.php
Lines:
1 to 13 of 13
public function __isset( $property ) { if ( \array_key_exists( $property, $this->cached_surfaces ) ) { return true; } $surfaces = $this->get_surfaces(); if ( ! isset( $surfaces[ $property ] ) ) { return false; } return $this->container->has( $surfaces[ $property ] ); }