Your IP : 18.118.1.120


Current Path : /home/bitrix/ext_www/home-comfort.in.ua/bitrix/modules/sale/lib/location/normalizer/
Upload File :
Current File : /home/bitrix/ext_www/home-comfort.in.ua/bitrix/modules/sale/lib/location/normalizer/builder.php

<?php

namespace Bitrix\Sale\Location\Normalizer;

/**
 * Class Builder
 * @package Bitrix\Sale\Location\Normalizer
 * Build location name normalizer
 */
class Builder implements IBuilder
{
	/**
	 * @param string $lang Language identifier
	 * @return INormalizer
	 */
	public static function build($lang)
	{
		return new Normalizer([
			new CommonNormalizer(),
			new LanguageNormalizer($lang),
			new SpaceNormalizer()
		]);
	}
}