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

16 lines
306 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);
$this->db = new Database($this->conf);
//$this->auth = new Authenticator($this);
}
}