<?php/* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */namespaceSymfony\Bridge\PsrHttpMessage\Tests\Factory;useNyholm\Psr7\Factory\Psr17Factory;useSymfony\Bridge\PsrHttpMessage\Factory\PsrHttpFactory;/** * @author Kévin Dunglas <dunglas@gmail.com> * @author Antonio J. García Lagar <aj@garcialagar.es> */classPsrHttpFactoryTestextendsAbstractHttpMessageFactoryTest{protectedfunctionbuildHttpMessageFactory(){$factory=newPsr17Factory();returnnewPsrHttpFactory($factory,$factory,$factory,$factory);}}