merged branch stloyd/bugfix/nulllogger (PR #6704)

This PR was merged into the master branch.

Commits
-------

eb0d2ab [HttpKernel] Remove conflicting `use` from `NullLogger`

Discussion
----------

[HttpKernel] Remove conflicting `use` from `NullLogger`

Without this code dies with fatal:
> Cannot use Psr\Log\LoggerInterface as LoggerInterface because the name is already in use

---------------------------------------------------------------------------

by Seldaek at 2013-01-11T11:00:50Z

Oops :)
This commit is contained in:
Fabien Potencier 2013-01-11 12:17:32 +01:00
commit 69aa428d47

View File

@ -11,7 +11,6 @@
namespace Symfony\Component\HttpKernel\Log;
use Psr\Log\LoggerInterface;
use Psr\Log\NullLogger as PsrNullLogger;
/**