xref: /plugin/statistics/DummyLogger.php (revision 523da37276acfd8d5f4f6c331a0062602b449fec)
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