From 7a912a49eeea35c42d251f3181bd6404ce7b01d3 Mon Sep 17 00:00:00 2001 From: Christophe Coevoet Date: Sat, 19 Mar 2011 23:26:12 +0100 Subject: [PATCH] Removed the public keyword in the interface --- src/Monolog/Handler/HandlerInterface.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Monolog/Handler/HandlerInterface.php b/src/Monolog/Handler/HandlerInterface.php index e46c3214..7132f900 100644 --- a/src/Monolog/Handler/HandlerInterface.php +++ b/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.