Pārlūkot izejas kodu

[MonologBundle] Removed useless variable and fixed phpdoc

Christophe Coevoet 14 gadi atpakaļ
vecāks
revīzija
3d7e68ec1c

+ 1 - 3
src/Symfony/Bundle/MonologBundle/DependencyInjection/Compiler/DebugHandlerPass.php

@@ -18,14 +18,12 @@ use Symfony\Component\DependencyInjection\Definition;
 use Monolog\Logger;
 
 /**
- * Replaces the default logger by another one with its own channel for tagged services.
+ * Adds the DebugHandler when the profiler is enabled.
  *
  * @author Christophe Coevoet <stof@notk.org>
  */
 class DebugHandlerPass implements CompilerPassInterface
 {
-    protected $channels = array();
-
     public function process(ContainerBuilder $container)
     {
         if (!$container->hasDefinition('monolog.logger_prototype') || !$container->hasDefinition('profiler')) {