1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<?php namespace dokuwiki\plugin\config\test\Setting; /** * @group plugin_config * @group admin_plugins * @group plugins * @group bundled_plugins */ class SettingArrayTest extends SettingTest { /** @inheritdoc */ public function dataOut() { return [ [ ['foo','bar'], "\$conf['test'] = array('foo', 'bar');\n"] ]; } }