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