From 8a07ffa544ae3040bf490747b4155ddfe2bf65bd Mon Sep 17 00:00:00 2001 From: Awilum Date: Sun, 26 Apr 2020 22:41:26 +0300 Subject: [PATCH] refactor(core): new `project` folder instead of `site` BREAKING CHANGES - rename `site` into `project` - use new constant PATH['project'] instead of constant PATH['site'] --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 23af5b8d..aa82c39a 100755 --- a/index.php +++ b/index.php @@ -32,7 +32,7 @@ define('ROOT_DIR', str_replace(DIRECTORY_SEPARATOR, '/', getcwd())); * Define the PATH (without trailing slash). */ define('PATH', [ - 'site' => ROOT_DIR . '/site', + 'project' => ROOT_DIR . '/project', 'config' => ROOT_DIR . '/src/flextype/config', 'cache' => ROOT_DIR . '/var/cache', 'logs' => ROOT_DIR . '/var/logs',