<?php/** * @package WPSEO\Admin\Metabox *//** * Describes an interface for an analysis that can either be enabled or disabled */interfaceWPSEO_Metabox_Analysis{/** * Whether this analysis is enabled. * * @return bool Whether or not this analysis is enabled. */publicfunctionis_enabled();/** * Whether or not this analysis is enabled by the user. * * @return bool Whether or not this analysis is enabled by the user. */publicfunctionis_user_enabled();/** * Whether or not this analysis is enabled globally. * * @return bool Whether or not this analysis is enabled globally. */publicfunctionis_globally_enabled();}