18 lines
313 B
PHP
18 lines
313 B
PHP
<?php
|
|
|
|
/*
|
|
The app container exists to be a dependency container for the game.
|
|
*/
|
|
|
|
class App
|
|
{
|
|
public static Database $db;
|
|
public static Request $req;
|
|
|
|
public function __construct(string $dbPath)
|
|
{
|
|
self::$req = new Request(); // the current request
|
|
self::$db = new Database($dbPath); // the database
|
|
}
|
|
}
|