diff options
author | Andreas Fischer <bantu@phpbb.com> | 2014-08-09 14:54:15 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2014-08-09 15:58:04 +0200 |
commit | 4f131c224817517b9c8e32bf0eb99bda79431d73 (patch) | |
tree | 0fcb361d81c61f9ec074ff29a00bee4e5e5673d8 /build | |
parent | 56ca276dcf080972ad2c5ae411b37c392ffed24d (diff) | |
download | forums-4f131c224817517b9c8e32bf0eb99bda79431d73.tar forums-4f131c224817517b9c8e32bf0eb99bda79431d73.tar.gz forums-4f131c224817517b9c8e32bf0eb99bda79431d73.tar.bz2 forums-4f131c224817517b9c8e32bf0eb99bda79431d73.tar.xz forums-4f131c224817517b9c8e32bf0eb99bda79431d73.zip |
[ticket/12941] Add sami.conf.php for Travis CI.
PHPBB3-12941
Diffstat (limited to 'build')
-rw-r--r-- | build/sami.conf.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/build/sami.conf.php b/build/sami.conf.php index febd0276d4..78d532631c 100644 --- a/build/sami.conf.php +++ b/build/sami.conf.php @@ -45,7 +45,7 @@ $versions = Sami\Version\GitVersionCollection::create(__DIR__ . '/../') ->add('develop-ascraeus') ; -return new Sami\Sami($iterator, array( +$config = array( 'theme' => 'enhanced', 'versions' => $versions, 'title' => 'phpBB API Documentation', @@ -54,4 +54,6 @@ return new Sami\Sami($iterator, array( 'default_opened_level' => 2, // Do not use JsonStore. See https://github.com/fabpot/Sami/issues/79 'store' => new PhpbbArrayStore, -)); +); + +return new Sami\Sami($iterator, $config); |