<?php
namespace WCML\Compatibility\Aurum;
use WCML\Compatibility\ComponentFactory;
use WCML\StandAlone\IStandAloneAction;
/**
 * @see https://laborator.co/themes/aurum/
 */
class Factory extends ComponentFactory implements IStandAloneAction {
	/**
	 * @inheritDoc
	 */
	public function create() {
		$hooks = [];
		if ( wcml_is_multi_currency_on() ) {
			$hooks[] = new MulticurrencyHooks();
		}
		return $hooks;
	}
}