File "NoopHandler.php"

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

<?php
declare (strict_types=1);
namespace MailPoetVendor\Monolog\Handler;
if (!defined('ABSPATH')) exit;
class NoopHandler extends Handler
{
 public function isHandling(array $record) : bool
 {
 return \true;
 }
 public function handle(array $record) : bool
 {
 return \false;
 }
}