1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-08 14:16:42 +02:00

Removed the public keyword in the interface

This commit is contained in:
Christophe Coevoet
2011-03-19 23:26:12 +01:00
parent 3a3c96d6d7
commit 7a912a49ee

View File

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