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

14 lines
256 B
PHP
Raw Normal View History

2022-01-15 10:26:02 +00:00
<?php
// Handles anything to do with sessions
class Session
{
public function __construct()
{
2022-01-20 21:23:21 +00:00
// Start new session if there is none
2022-01-15 10:26:02 +00:00
if (session_status() === PHP_SESSION_NONE)
{
session_start();
}
}
}