xref: /dokuwiki/lib/plugins/config/_test/Setting/SettingNumericoptTest.php (revision f37fd93eb642c709ffd1cbb73dee42771c53a56e)
1*f37fd93eSAndreas Gohr<?php
2*f37fd93eSAndreas Gohr
3*f37fd93eSAndreas Gohrnamespace dokuwiki\plugin\config\test\Setting;
4*f37fd93eSAndreas Gohr
5*f37fd93eSAndreas Gohr/**
6*f37fd93eSAndreas Gohr * @group plugin_config
7*f37fd93eSAndreas Gohr * @group admin_plugins
8*f37fd93eSAndreas Gohr * @group plugins
9*f37fd93eSAndreas Gohr * @group bundled_plugins
10*f37fd93eSAndreas Gohr */
11*f37fd93eSAndreas Gohrclass SettingNumericoptTest extends SettingNumericTest {
12*f37fd93eSAndreas Gohr
13*f37fd93eSAndreas Gohr    /** @inheritdoc */
14*f37fd93eSAndreas Gohr    public function dataOut() {
15*f37fd93eSAndreas Gohr        return array_merge(
16*f37fd93eSAndreas Gohr            parent::dataOut(),
17*f37fd93eSAndreas Gohr            [
18*f37fd93eSAndreas Gohr                ['', "\$conf['test'] = '';\n"],
19*f37fd93eSAndreas Gohr            ]
20*f37fd93eSAndreas Gohr        );
21*f37fd93eSAndreas Gohr    }
22*f37fd93eSAndreas Gohr
23*f37fd93eSAndreas Gohr}
24