WordPress Version: 5.4
/**
* Error Protection API: Functions
*
* @package WordPress
* @since 5.2.0
*/
/**
* Get the instance for storing paused plugins.
*
* @return WP_Paused_Extensions_Storage
*/
function wp_paused_plugins()
{
static $storage = null;
if (null === $storage) {
$storage = new WP_Paused_Extensions_Storage('plugin');
}
return $storage;
}