1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-23 07:14:55 +00:00
Arsse/vendor/JKingWeb/NewsSync/RuntimeData.php

16 lines
289 B
PHP
Raw Normal View History

<?php
declare(strict_types=1);
namespace JKingWeb\NewsSync;
class RuntimeData {
public $conf;
public $db;
public $auth;
public function __construct(Conf $conf) {
$this->conf = $conf;
2016-10-02 21:07:17 +00:00
Lang::set($conf->lang);
2016-10-17 20:49:39 +00:00
$this->db = new Database($this);
$this->user = new User($this);
}
}