SimplePie_Restriction::get_type() – Get the type

You appear to be a bot. Output may be restricted

Description

Get the type

Usage

$string|null = SimplePie_Restriction::get_type();

Parameters

Returns

string|null

Source

File name: wordpress/wp-includes/SimplePie/Restriction.php
Lines:

1 to 9 of 9
  public function get_type()
  {
    if ($this->type !== null)
    {
      return $this->type;
    }

    return null;
  }
 

 View on GitHub View on Trac