use same class case everywhere

This commit is contained in:
Jean-Christian Paul Denis 2022-12-17 22:21:01 +01:00
parent 1ccf6d092b
commit 0d7f4b830c
Signed by: JcDenis
GPG Key ID: 1B5B8C5B90B6C951
4 changed files with 13 additions and 13 deletions

View File

@ -24,7 +24,7 @@ use dcCore;
use dcFavorites; use dcFavorites;
use dcPage; use dcPage;
class admin class Admin
{ {
public static function init() public static function init()
{ {
@ -53,5 +53,5 @@ class admin
} }
} }
admin::init(); Admin::init();
admin::process(); Admin::process();

View File

@ -30,7 +30,7 @@ use path;
/* php ns */ /* php ns */
use Exception; use Exception;
class config class Config
{ {
public static function init(): void public static function init(): void
{ {
@ -149,6 +149,6 @@ class config
} }
} }
config::init(); Config::init();
config::process(); Config::process();
config::render(); Config::render();

View File

@ -24,7 +24,7 @@ use dcCore;
/* php ns */ /* php ns */
use Exception; use Exception;
class install class Install
{ {
# -- Module specs -- # -- Module specs --
private static $mod_conf = [ private static $mod_conf = [
@ -106,4 +106,4 @@ class install
} }
} }
return install::process(); return Install::process();

View File

@ -31,7 +31,7 @@ use path;
/* php ns */ /* php ns */
use Exception; use Exception;
class index class Index
{ {
private static $plugins_path = ''; private static $plugins_path = '';
private static $themes_path = ''; private static $themes_path = '';
@ -344,6 +344,6 @@ class index
} }
} }
index::init(); Index::init();
index::process(); Index::process();
index::render(); Index::render();