mimmi20/ua-normalizer

View on GitHub
src/NormalizerFactory.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
<?php
/**
 * This file is part of the ua-normalizer package.
 *
 * Copyright (c) 2015-2024, Thomas Mueller <mimmi20@live.de>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

declare(strict_types = 1);

namespace UaNormalizer;

use UaNormalizer\Normalizer\NormalizerChain;

/**
 * factory to create a useragent normalizer
 */
final class NormalizerFactory
{
    /**
     * builds an useragent normalizer chain
     *
     * @throws void
     *
     * @api
     */
    public function build(): NormalizerChain
    {
        return new NormalizerChain(
            [
                new Normalizer\BabelFish(),
                new Normalizer\Comdirect(),
                new Normalizer\Encode(),
                new Normalizer\IISLogging(),
                new Normalizer\Spaces(),
                new Normalizer\EncryptionRemover(),
                new Normalizer\LocaleRemover(),
                new Normalizer\Mozilla(),
                new Normalizer\Linux(),
                new Normalizer\KhtmlGecko(),
                new Normalizer\HexCode(),
                new Normalizer\WindowsNt(),
                new Normalizer\SerialNumbers(),
                new Normalizer\TransferEncoding(),
                new Normalizer\Trim(),
            ],
        );
    }
}