[ Index ]

PHP Cross Reference of DokuWiki

title

Body

[close]

/lib/plugins/config/_test/Setting/ -> SettingArrayTest.php (source)

   1  <?php
   2  
   3  namespace dokuwiki\plugin\config\test\Setting;
   4  
   5  /**
   6   * @group plugin_config
   7   * @group admin_plugins
   8   * @group plugins
   9   * @group bundled_plugins
  10   */
  11  class 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  }