1<?php declare(strict_types=1);
2
3/*
4 * This file is part of the Monolog package.
5 *
6 * (c) Jordi Boggiano <j.boggiano@seld.be>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12namespace Monolog\Handler;
13
14/**
15 * No-op
16 *
17 * This handler handles anything, but does nothing, and does not stop bubbling to the rest of the stack.
18 * This can be used for testing, or to disable a handler when overriding a configuration without
19 * influencing the rest of the stack.
20 *
21 * @author Roel Harbers <roelharbers@gmail.com>
22 */
23class NoopHandler extends Handler
24{
25    /**
26     * {@inheritDoc}
27     */
28    public function isHandling(array $record): bool
29    {
30        return true;
31    }
32
33    /**
34     * {@inheritDoc}
35     */
36    public function handle(array $record): bool
37    {
38        return false;
39    }
40}
41