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