Skip to content

Commit

Permalink
Remove unneeded abstract handle() method
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbalandan committed Aug 27, 2022
1 parent e686a14 commit 7cc7283
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions system/Log/Handlers/BaseHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,17 +47,6 @@ public function canHandle(string $level): bool
return in_array($level, $this->handles, true);
}

/**
* Handles logging the message.
* If the handler returns false, then execution of handlers
* will stop. Any handlers that have not run, yet, will not
* be run.
*
* @param string $level
* @param string $message
*/
abstract public function handle($level, $message): bool;

/**
* Stores the date format to use while logging messages.
*/
Expand Down

0 comments on commit 7cc7283

Please sign in to comment.