From 2bc30bc8e0e37d0d50b6275d7e5ce904a3bfc2ba Mon Sep 17 00:00:00 2001 From: Ibrahim BinAlshikh Date: Wed, 17 Jan 2024 01:09:04 +0300 Subject: [PATCH] Update App.php --- webfiori/framework/App.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/webfiori/framework/App.php b/webfiori/framework/App.php index d008d476..90d2e972 100644 --- a/webfiori/framework/App.php +++ b/webfiori/framework/App.php @@ -540,7 +540,7 @@ private function initFrameworkVersionInfo() { * * @since 2.1 */ - define('WF_VERSION', '3.0.0-RC19'); + define('WF_VERSION', '3.0.0-Beta 1'); /** * A constant that tells the type of framework version. * @@ -548,7 +548,7 @@ private function initFrameworkVersionInfo() { * * @since 2.1 */ - define('WF_VERSION_TYPE', 'Release Candidate'); + define('WF_VERSION_TYPE', 'Beta'); /** * The date at which the framework version was released. * @@ -556,7 +556,7 @@ private function initFrameworkVersionInfo() { * * @since 2.1 */ - define('WF_RELEASE_DATE', '2023-11-07'); + define('WF_RELEASE_DATE', '2024-01-17'); } /** @@ -569,7 +569,7 @@ private function initMiddleware() { }); if (!class_exists(APP_DIR.'\ini\InitMiddleware')) { - Ini::get()->createIniClass('InitMiddleware', 'Register middleware which are created outside the folder \'app/middleware\'.'); + Ini::get()->createIniClass('InitMiddleware', 'Register middleware which are created outside the folder \'[APP_DIR]/middleware\'.'); } call_user_func(APP_DIR.'\ini\InitMiddleware::init'); }