autowp/autowp

View on GitHub
module/Application/src/Validator/Item/CatnameNotExistsFactory.php

Summary

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

declare(strict_types=1);

namespace Application\Validator\Item;

use Application\Model\Item;
use interop\container\containerinterface;
use Laminas\ServiceManager\Factory\FactoryInterface;

use function array_replace;

class CatnameNotExistsFactory implements FactoryInterface
{
    /**
     * @SuppressWarnings(PHPMD.UnusedFormalParameter)
     * @param string                $requestedName
     * @param ?array<string, mixed> $options
     */
    public function __invoke(containerinterface $container, $requestedName, ?array $options = null): CatnameNotExists
    {
        return new CatnameNotExists(array_replace($options, [
            'item' => $container->get(Item::class),
        ]));
    }
}