*/ interface RequiredActionServiceInterface { const CONFIG_ID = 'tao/requiredAction'; const OPTION_REQUIRED_ACTIONS = 'required_actions'; /** * Get list of all required actions * @return RequiredAction[] array of required action instances */ public function getRequiredActions(); /** * Get first action which should be executed (one of action's rules return true). * @return mixed */ public function getActionToBePerformed(); }