= $min_dollars && $onboarding_profile['revenue'] <= $max_dollars; } /** * Check if the store was marked as being setup for a client in onboarding. (Returns false if onboarding * was not completed). * * @return bool Whether or not the store is being setup for a client. */ public static function store_setup_for_client() { $onboarding_profile = self::get_onboarding_profile(); return ! empty( $onboarding_profile ) && isset( $onboarding_profile['setup_client'] ) && $onboarding_profile['setup_client']; } }