You appear to be a bot. Output may be restricted
Description
Magic getter for retrieving a property.
Usage
$string = Abstract_Main::__get( $property );
Parameters
- $property
- ( string ) required – The property to retrieve.
Returns
string The value of the property.
Source
File name: wordpress-seo/lib/abstract-main.php
Lines:
1 to 10 of 10
public function __get( $property ) { $surfaces = $this->get_surfaces(); if ( isset( $surfaces[ $property ] ) ) { $this->{$property} = $this->container->get( $surfaces[ $property ] ); return $this->{$property}; } throw new Exception( "Property $property does not exist." ); }