diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2013-01-05 16:33:05 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2013-01-05 16:33:05 +0100 |
commit | 48018e4abb848ff1a2ecb781ca3303979e3a2357 (patch) | |
tree | 49acc3d5b7d6ed07d6ef75739009766875b72e2c /Http/HttpUtils.php | |
parent | de6cab31d0b451b163dd2f44adc2e87d1162e3e7 (diff) | |
parent | 8a4c0679afcb97f0e46c296b062e2196da1b913b (diff) | |
download | symfony-security-48018e4abb848ff1a2ecb781ca3303979e3a2357.zip symfony-security-48018e4abb848ff1a2ecb781ca3303979e3a2357.tar.gz symfony-security-48018e4abb848ff1a2ecb781ca3303979e3a2357.tar.bz2 |
Merge branch '2.1'
* 2.1:
Restrict Monolog version to be in version <1.3
[Console] Make getTerminalWith & getTerminalHeight public
[DependencyInjection] fixed PhpDumper optimizations when an inlined service depends on the current one indirectly
[DependencyInjection] fixed PhpDumper when an inlined service definition has some properties
[DependencyInjection] added some tests for PhpDumper when the container is compiled
[DependencyInjection] fixed CS
[Process] Do not reset stdout/stderr pipes on Interrupted system call
[Locale] Adjust `StubIntlDateFormatter` to have new methods added in PHP 5.5
use the right RequestMatcherInterface
[Locale] Fix failing `StubIntlDateFormatter` tests in PHP 5.5
[Locale] Fix failing `StubIntlDateFormatter` in PHP 5.5
[Form] Fix failing `MonthChoiceList` in PHP 5.5
Update .travis.yml
Conflicts:
src/Symfony/Bridge/Monolog/composer.json
src/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9.php
Diffstat (limited to 'Http/HttpUtils.php')
-rw-r--r-- | Http/HttpUtils.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Http/HttpUtils.php b/Http/HttpUtils.php index 746b217..81893ff 100644 --- a/Http/HttpUtils.php +++ b/Http/HttpUtils.php @@ -16,7 +16,7 @@ use Symfony\Component\Security\Core\SecurityContextInterface; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\RedirectResponse; use Symfony\Component\Routing\Matcher\UrlMatcherInterface; -use Symfony\Component\HttpFoundation\RequestMatcherInterface; +use Symfony\Component\Routing\Matcher\RequestMatcherInterface; use Symfony\Component\Routing\Generator\UrlGeneratorInterface; use Symfony\Component\Routing\Exception\MethodNotAllowedException; use Symfony\Component\Routing\Exception\ResourceNotFoundException; |