. */ /** * Type object interface. * * @since 4.6.0 * @package Type */ namespace Textpattern\Type; interface TypeInterface { /** * Gets string representation of the item. * * @return string */ public function __toString(); }