File "HandlerInterface.php"

Full Path: /home/warrior1/public_html/wp-content/plugins/mailpoet/vendor-prefixed/monolog/monolog/src/Monolog/Handler/HandlerInterface.php
File size: 320 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
declare (strict_types=1);
namespace MailPoetVendor\Monolog\Handler;
if (!defined('ABSPATH')) exit;
interface HandlerInterface
{
 public function isHandling(array $record) : bool;
 public function handle(array $record) : bool;
 public function handleBatch(array $records) : void;
 public function close() : void;
}