Просмотр исходного кода

Removed the public keyword in the interface

Christophe Coevoet 15 лет назад
Родитель
Сommit
7a912a49ee
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      src/Monolog/Handler/HandlerInterface.php

+ 2 - 2
src/Monolog/Handler/HandlerInterface.php

@@ -25,7 +25,7 @@ interface HandlerInterface
      *
      * @return Boolean
      */
-    public function isHandling(array $record);
+    function isHandling(array $record);
 
     /**
      * Handles a record.
@@ -33,7 +33,7 @@ interface HandlerInterface
      * @param array $record The record to handle
      * @return Boolean Whether the handler stops the propagation in the stack or not.
      */
-    public function handle(array $record);
+    function handle(array $record);
 
     /**
      * Adds a processor in the stack.