autowp/autowp

View on GitHub
module/Application/src/Controller/Plugin/Service/TranslateFactory.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
<?php

declare(strict_types=1);

namespace Application\Controller\Plugin\Service;

use Application\Controller\Plugin\Translate as Plugin;
use interop\container\containerinterface;
use Laminas\ServiceManager\Factory\FactoryInterface;

class TranslateFactory implements FactoryInterface
{
    /**
     * @SuppressWarnings(PHPMD.UnusedFormalParameter)
     * @param string                $requestedName
     * @param ?array<string, mixed> $options
     */
    public function __invoke(containerinterface $container, $requestedName, ?array $options = null): Plugin
    {
        return new Plugin(
            $container->get('MvcTranslator')
        );
    }
}