1*6f023786SAndreas Gohr<?php 2*6f023786SAndreas Gohr 3*6f023786SAndreas Gohrnamespace dokuwiki\plugin\struct\test\mock; 4*6f023786SAndreas Gohr 5*6f023786SAndreas Gohruse dokuwiki\plugin\struct\types; 6*6f023786SAndreas Gohr 7*6f023786SAndreas Gohr 8*6f023786SAndreas Gohrclass Dropdown extends types\Dropdown { 9*6f023786SAndreas Gohr public function getOptions() { 10*6f023786SAndreas Gohr return parent::getOptions(); 11*6f023786SAndreas Gohr } 12*6f023786SAndreas Gohr 13*6f023786SAndreas Gohr} 14