Your IP : 216.73.216.54


Current Path : /var/www/html/mediawiki/extensions/Gadgets/includes/
Upload File :
Current File : /var/www/html/mediawiki/extensions/Gadgets/includes/StaticGadgetRepo.php

<?php

namespace MediaWiki\Extension\Gadgets;

use InvalidArgumentException;

/**
 * @internal For use in tests.
 */
class StaticGadgetRepo extends GadgetRepo {

	/**
	 * @var Gadget[]
	 */
	private array $gadgets;

	public function __construct( array $gadgets ) {
		$this->gadgets = $gadgets;
	}

	public function getGadgetIds(): array {
		return array_keys( $this->gadgets );
	}

	public function getGadget( string $id ): Gadget {
		if ( !array_key_exists( $id, $this->gadgets ) ) {
			throw new InvalidArgumentException();
		}
		return $this->gadgets[$id];
	}
}