From 46901d2c80e828714da85e9936c47cebae55a52b Mon Sep 17 00:00:00 2001 From: leo Date: Thu, 8 Jun 2017 18:19:59 +0800 Subject: [PATCH] set include_fluent default to true (#512) --- src/Generator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Generator.php b/src/Generator.php index f75df24..1624fc5 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -85,7 +85,7 @@ class Generator ->with('namespaces_by_alias_ns', $this->getAliasesByAliasNamespace()) ->with('helpers', $this->helpers) ->with('version', $app->version()) - ->with('include_fluent', $this->config->get('ide-helper.include_fluent', false)) + ->with('include_fluent', $this->config->get('ide-helper.include_fluent', true)) ->render(); }