* @package WoltLabSuite\Core\Data */ interface IToggleAction { /** * Toggles the "isDisabled" status of the relevant objects. */ public function toggle(); /** * Validates the "toggle" action. */ public function validateToggle(); }