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 */ 18 public function __call($name, $arguments) 19 { 20 return null; 21 } 22} 23