Skip to content

Commit

Permalink
Removed the public keyword in the interface
Browse files Browse the repository at this point in the history
  • Loading branch information
stof committed Mar 19, 2011
1 parent 3a3c96d commit 7a912a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Monolog/Handler/HandlerInterface.php
Expand Up @@ -25,15 +25,15 @@ interface HandlerInterface
*
* @return Boolean
*/
public function isHandling(array $record);
function isHandling(array $record);

/**
* Handles a record.
*
* @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.
Expand Down

0 comments on commit 7a912a4

Please sign in to comment.