Skip to content

Commit

Permalink
Merge pull request #6434 from codeigniter4/paulbalandan-patch-1
Browse files Browse the repository at this point in the history
Remove unneeded abstract `handle()` method
  • Loading branch information
paulbalandan committed Aug 28, 2022
2 parents 799d655 + 7cc7283 commit 622f829
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 622f829

Please sign in to comment.