WordPress Version: 5.2
/**
* Get the instance for storing paused extensions.
*
* @return WP_Paused_Extensions_Storage
*/
function wp_paused_themes()
{
static $storage = null;
if (null === $storage) {
$storage = new WP_Paused_Extensions_Storage('theme');
}
return $storage;
}