This repository has been archived on 2023-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
web/app/core/Session.php
2022-01-15 11:26:02 +01:00

14 lines
227 B
PHP

<?php
// Handles anything to do with sessions
class Session
{
// TODO: ...
public function __construct()
{
if (session_status() === PHP_SESSION_NONE)
{
session_start();
}
}
}