1<?php
2
3/**
4 * @see       https://github.com/laminas/laminas-log for the canonical source repository
5 * @copyright https://github.com/laminas/laminas-log/blob/master/COPYRIGHT.md
6 * @license   https://github.com/laminas/laminas-log/blob/master/LICENSE.md New BSD License
7 */
8
9namespace Laminas\Log\Writer;
10
11class Noop extends AbstractWriter
12{
13    /**
14     * Write a message to the log.
15     *
16     * @param array $event event data
17     * @return void
18     */
19    protected function doWrite(array $event)
20    {
21    }
22}
23