1<?php 2 3namespace dokuwiki\plugin\config\core\Setting; 4 5/** 6 * A do-nothing class used to detect settings with no metadata entry. 7 * Used internaly to hide undefined settings, and generate the undefined settings list. 8 */ 9class SettingUndefined extends SettingHidden { 10 11 /** @inheritdoc */ 12 public function shouldHaveDefault() { 13 return false; 14 } 15 16} 17