xref: /plugin/statistics/DummyLogger.php (revision d5857ae18b3c3bc72b1ad749979db98fa4030fe6)
1<?php
2
3namespace dokuwiki\plugin\statistics;
4
5/**
6 * A logger that does nothing
7 *
8 * Used when logging is not wanted or possible
9 */
10class DummyLogger
11{
12    /**
13     * Ignore whatever is called
14     *
15     * @param string $name ignored
16     * @param array $arguments ignored
17     * @return null
18     */
19    public function __call($name, $arguments)
20    {
21        return null;
22    }
23}
24