deleted session
This commit is contained in:
parent
ece40a8644
commit
1ee4c9a7dd
|
@ -7,7 +7,6 @@ namespace ${REPO_OWNER}\${REPO_NAME}\controllers;
|
||||||
// Files of the project
|
// Files of the project
|
||||||
use ${REPO_OWNER}\${REPO_NAME}\views\templater,
|
use ${REPO_OWNER}\${REPO_NAME}\views\templater,
|
||||||
${REPO_OWNER}\${REPO_NAME}\models\core as models,
|
${REPO_OWNER}\${REPO_NAME}\models\core as models,
|
||||||
${REPO_OWNER}\${REPO_NAME}\models\session,
|
|
||||||
${REPO_OWNER}\${REPO_NAME}\models\enumerations\language;
|
${REPO_OWNER}\${REPO_NAME}\models\enumerations\language;
|
||||||
|
|
||||||
// Framework for PHP
|
// Framework for PHP
|
||||||
|
@ -75,7 +74,7 @@ class core extends controller
|
||||||
if (isset($$_SERVER['HTTP_USER_AGENT']) && $$_SERVER['HTTP_USER_AGENT'] === 'nginx-ssl early hints') return status::bruh->label;
|
if (isset($$_SERVER['HTTP_USER_AGENT']) && $$_SERVER['HTTP_USER_AGENT'] === 'nginx-ssl early hints') return status::bruh->label;
|
||||||
|
|
||||||
// Initializing the view template engine instance
|
// Initializing the view template engine instance
|
||||||
$$this->view = new templater($$this->session);
|
$$this->view = new templater();
|
||||||
|
|
||||||
// For the extends system
|
// For the extends system
|
||||||
parent::__construct(core: $$core);
|
parent::__construct(core: $$core);
|
||||||
|
|
Loading…
Reference in New Issue