You appear to be a bot. Output may be restricted
Description
The data type we import from the plugin.
Usage
$string = Abstract_Aioseo_Importing_Action::get_type();
Parameters
Returns
string The data type we import from the plugin.
Source
File name: wordpress-seo/src/actions/importing/abstract-aioseo-importing-action.php
Lines:
1 to 10 of 10
public function get_type() { $class = \get_class( $this ); $type = $class::TYPE; if ( $type === null ) { throw new Exception( 'Importing action without explicit type' ); } return $type; }