<?php
namespace Yoast\WP\SEO\Helpers;
/**
* A helper object for string operations.
*/
class String_Helper {
/**
* Strips all HTML tags including script and style.
*
* @param string $string The string to strip the tags from.
*
* @codeCoverageIgnore It only wraps a WordPress function.
*
* @return string The processed string.
*/
public function strip_all_tags( $string ) {
return \wp_strip_all_tags( $string );
}
}