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/model/Simulator.php
2022-01-24 11:54:42 +01:00

11 lines
159 B
PHP

<?php
class Simulator
{
public Database $database;
public function __construct(Database $database)
{
$this->database = $database;
}
}