Skip to content

Commit

Permalink
Update App.php
Browse files Browse the repository at this point in the history
  • Loading branch information
usernane committed Jan 16, 2024
1 parent 9d26f53 commit 2bc30bc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions webfiori/framework/App.php
Original file line number Diff line number Diff line change
Expand Up @@ -540,23 +540,23 @@ 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.
*
* The constant can have values such as 'Alpha', 'Beta' or 'Stable'.
*
* @since 2.1
*/
define('WF_VERSION_TYPE', 'Release Candidate');
define('WF_VERSION_TYPE', 'Beta');
/**
* The date at which the framework version was released.
*
* The value of the constant will be a string in the format YYYY-MM-DD.
*
* @since 2.1
*/
define('WF_RELEASE_DATE', '2023-11-07');
define('WF_RELEASE_DATE', '2024-01-17');
}

/**
Expand All @@ -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');
}
Expand Down

0 comments on commit 2bc30bc

Please sign in to comment.