diff --git a/extend.php b/extend.php index 761bd9d..ffc0567 100644 --- a/extend.php +++ b/extend.php @@ -9,6 +9,8 @@ * file that was distributed with this source code. */ +use Flarum\Extend; + return [ // Register extenders here to customize your forum! ]; diff --git a/public/index.php b/public/index.php index 91e3da6..b11dd72 100644 --- a/public/index.php +++ b/public/index.php @@ -13,8 +13,8 @@ require '../vendor/autoload.php'; $server = new Flarum\Http\Server( Flarum\Foundation\Site::fromPaths([ - 'base' => __DIR__.'/..', - 'public' => __DIR__.'/../public', + 'base' => __DIR__.'/..', + 'public' => __DIR__.'/../public', 'storage' => __DIR__.'/../storage', ]) );