File "ProcessableHandlerInterface.php"

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

<?php
declare (strict_types=1);
namespace MailPoetVendor\Monolog\Handler;
if (!defined('ABSPATH')) exit;
use MailPoetVendor\Monolog\Processor\ProcessorInterface;
interface ProcessableHandlerInterface
{
 public function pushProcessor(callable $callback) : HandlerInterface;
 public function popProcessor() : callable;
}