From 20b61543abe97f5d44359b67ea7bb322b20bd651 Mon Sep 17 00:00:00 2001 From: Jamiel <20553479+jamielsharief@users.noreply.github.com> Date: Sun, 30 Aug 2020 08:58:28 +0200 Subject: [PATCH] Fixed use statement --- templates/generator/plugin_controller.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/generator/plugin_controller.tpl b/templates/generator/plugin_controller.tpl index 6b6cc8c..802b23c 100644 --- a/templates/generator/plugin_controller.tpl +++ b/templates/generator/plugin_controller.tpl @@ -3,7 +3,7 @@ declare(strict_types=1); namespace %namespace%\Http\Controller; -use App\Http\Controller\Controller\ApplicationController as BaseController; +use App\Http\Controller\ApplicationController as BaseController; class ApplicationController extends BaseController {