2021-04-07 15:01:55 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
2022-03-11 18:11:20 -05:00
|
|
|
* This file is part of Flarum.
|
2021-04-07 15:01:55 -04:00
|
|
|
*
|
2022-03-11 18:11:20 -05:00
|
|
|
* For detailed copyright and license information, please view the
|
|
|
|
* LICENSE file that was distributed with this source code.
|
2021-04-07 15:01:55 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Flarum\Testing;
|
|
|
|
|
|
|
|
use Flarum\Extend;
|
|
|
|
|
|
|
|
return [
|
2021-04-23 18:26:41 -04:00
|
|
|
(new Extend\Settings)->serializeToForum('notARealSetting', 'not.a.real.setting'),
|
|
|
|
(new Extend\Frontend('forum'))->route('/added-by-extension', 'added-by-extension')
|
2021-04-07 15:01:55 -04:00
|
|
|
];
|