diff --git a/CHANGELOG.md b/CHANGELOG.md index ad6515d..27c0cd3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased](https://github.com/ajgarlag/psr-http-message-bundle/compare/1.1.1...main) +### Fixed +- Use correct namespace to detect SensioFrameworkExtraBundle version + ## [1.1.1](https://github.com/ajgarlag/psr-http-message-bundle/compare/1.1.0...1.1.1) - 2021-02-17 ### Fixed diff --git a/src/DependencyInjection/AjgarlagPsrHttpMessageExtension.php b/src/DependencyInjection/AjgarlagPsrHttpMessageExtension.php index 76400b3..a6a7da9 100644 --- a/src/DependencyInjection/AjgarlagPsrHttpMessageExtension.php +++ b/src/DependencyInjection/AjgarlagPsrHttpMessageExtension.php @@ -12,13 +12,13 @@ namespace Ajgarlag\Bundle\PsrHttpMessageBundle\DependencyInjection; -use Ajgarlag\Bundle\PsrHttpMessageBundle\Request\ArgumentValueResolver\Psr7ServerRequestResolver; use Nyholm\Psr7\Factory\Psr17Factory; use Psr\Http\Message\ResponseFactoryInterface; use Psr\Http\Message\ServerRequestFactoryInterface; use Psr\Http\Message\StreamFactoryInterface; use Psr\Http\Message\UploadedFileFactoryInterface; use Sensio\Bundle\FrameworkExtraBundle\DependencyInjection\Configuration as SensioFrameworkExtraConfiguration; +use Sensio\Bundle\FrameworkExtraBundle\Request\ArgumentValueResolver\Psr7ServerRequestResolver; use Symfony\Component\Config\FileLocator; use Symfony\Component\DependencyInjection\Compiler\AliasDeprecatedPublicServicesPass; use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;