From b60a0c32baefd1dc9a516b5bf82def87a682f59d Mon Sep 17 00:00:00 2001 From: Awilum Date: Mon, 10 Jun 2019 16:37:11 +0300 Subject: [PATCH] Flextype core refactoring #117 --- flextype/bootstrap.php | 1 - flextype/{ => core}/Cache.php | 0 flextype/{ => core}/Controller.php | 0 flextype/{ => core}/Entries.php | 0 flextype/{ => core}/Fieldsets.php | 0 flextype/{ => core}/Middleware.php | 0 flextype/{ => core}/Plugins.php | 0 flextype/{ => core}/Snippets.php | 0 flextype/{ => core}/Themes.php | 0 9 files changed, 1 deletion(-) rename flextype/{ => core}/Cache.php (100%) rename flextype/{ => core}/Controller.php (100%) rename flextype/{ => core}/Entries.php (100%) rename flextype/{ => core}/Fieldsets.php (100%) rename flextype/{ => core}/Middleware.php (100%) rename flextype/{ => core}/Plugins.php (100%) rename flextype/{ => core}/Snippets.php (100%) rename flextype/{ => core}/Themes.php (100%) diff --git a/flextype/bootstrap.php b/flextype/bootstrap.php index 8106268b..000e1153 100755 --- a/flextype/bootstrap.php +++ b/flextype/bootstrap.php @@ -74,7 +74,6 @@ $flextype['csrf'] = function ($container) { return new \Slim\Csrf\Guard; }; - /** * Add logger */ diff --git a/flextype/Cache.php b/flextype/core/Cache.php similarity index 100% rename from flextype/Cache.php rename to flextype/core/Cache.php diff --git a/flextype/Controller.php b/flextype/core/Controller.php similarity index 100% rename from flextype/Controller.php rename to flextype/core/Controller.php diff --git a/flextype/Entries.php b/flextype/core/Entries.php similarity index 100% rename from flextype/Entries.php rename to flextype/core/Entries.php diff --git a/flextype/Fieldsets.php b/flextype/core/Fieldsets.php similarity index 100% rename from flextype/Fieldsets.php rename to flextype/core/Fieldsets.php diff --git a/flextype/Middleware.php b/flextype/core/Middleware.php similarity index 100% rename from flextype/Middleware.php rename to flextype/core/Middleware.php diff --git a/flextype/Plugins.php b/flextype/core/Plugins.php similarity index 100% rename from flextype/Plugins.php rename to flextype/core/Plugins.php diff --git a/flextype/Snippets.php b/flextype/core/Snippets.php similarity index 100% rename from flextype/Snippets.php rename to flextype/core/Snippets.php diff --git a/flextype/Themes.php b/flextype/core/Themes.php similarity index 100% rename from flextype/Themes.php rename to flextype/core/Themes.php