From f873fd0600a417aefeddcaf06a82b0e09a97f1c1 Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Tue, 5 May 2015 17:07:36 +0930 Subject: [PATCH] Return the provider so core can store a reference to it --- extensions/tags/bootstrap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/tags/bootstrap.php b/extensions/tags/bootstrap.php index 19039db79..72ad85c3d 100644 --- a/extensions/tags/bootstrap.php +++ b/extensions/tags/bootstrap.php @@ -6,4 +6,4 @@ require 'vendor/autoload.php'; // Register our service provider with the Flarum application. In here we can // register bindings and execute code when the application boots. -$app->register('Flarum\Categories\CategoriesServiceProvider'); +return $app->register('Flarum\Categories\CategoriesServiceProvider');