for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace TMV\HTTPlugModule\DIFactory\PluginFactory;
use Psr\Container\ContainerInterface;
use Psr\Http\Message\UriFactoryInterface;
use TMV\HTTPlugModule\PluginFactory\BaseUriFactory;
class BaseUriFactoryFactory
{
public function __invoke(ContainerInterface $container): BaseUriFactory
/** @var UriFactoryInterface $uriFactory */
$uriFactory = $container->get('httplug.uri_factory');
return new BaseUriFactory($uriFactory);
}