From e990804bb903ba4c04196e3eafe50b599ffbbe6a Mon Sep 17 00:00:00 2001 From: Kallef Alexandre de Souza Date: Tue, 27 Oct 2015 13:10:01 -0200 Subject: [PATCH] Order boot provider, supports the lang module Ordering boot provider, now config module supports the languages module. --- Commands/stubs/scaffold/provider.stub | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Commands/stubs/scaffold/provider.stub b/Commands/stubs/scaffold/provider.stub index 83f845a..e040038 100644 --- a/Commands/stubs/scaffold/provider.stub +++ b/Commands/stubs/scaffold/provider.stub @@ -18,8 +18,8 @@ class $CLASS$ extends ServiceProvider { */ public function boot() { - $this->registerConfig(); $this->registerTranslations(); + $this->registerConfig(); $this->registerViews(); }