Weak hands cannot be planted, meager skills have no foundation. Shallow wisdom is futile, how can one hope for a good name?扰扰从役倦，屑屑身事微。少壮轻年月，迟暮惜光辉。
<html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><?php
/**
 * Migration Context Manager
 *
 * Manages the migration context state to prevent interference between
 * migration processes and normal rendering operations.
 *
 * @since ??
 *
 * @package Divi
 */

namespace ET\Builder\Migration;

/**
 * Migration Context Manager Class.
 *
 * @since ??
 */
class MigrationContext {

	/**
	 * Whether migration is currently in progress.
	 *
	 * @since ??
	 *
	 * @var bool
	 */
	private static $_is_in_migration = false;

	/**
	 * Set migration state to active.
	 *
	 * @since ??
	 *
	 * @return void
	 */
	public static function start(): void {
		self::$_is_in_migration = true;
	}

	/**
	 * Set migration state to inactive.
	 *
