山に住む一家は千個の巣から蜂蜜を収穫し、幼い子供たちは新しい畑で5エーカーの野菜を栽培している。<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
/**
 * Class Google\Site_Kit\Core\Modules\Module_Registry
 *
 * @package   Google\Site_Kit\Core\Modules
 * @copyright 2021 Google LLC
 * @license   https://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
 * @link      https://sitekit.withgoogle.com
 */

namespace Google\Site_Kit\Core\Modules;

use InvalidArgumentException;

/**
 * Class for managing module registration.
 *
 * @since 1.21.0
 * @access private
 * @ignore
 */
class Module_Registry {
	/**
	 * Registered modules.
	 *
	 * @since 1.21.0
	 * @var array
	 */
	private $registry = array();

	/**
	 * Registers a module class on the registry.
	 *
	 * @since 1.21.0
	 *
	 * @param string $module_classname Fully-qualified module class name to register.
	 * @throws InvalidArgumentException Thrown if an invalid module class name is provided.
	 */
	public function register( $module_classname ) {
		if ( ! is_string( $module_classname ) || ! $module_classname ) {
			throw new InvalidArgumentException( 'A module class name is required to register a module.' );
		}

		if ( ! class_exists( $module_classname ) ) {
			throw new InvalidArgu