Newer
Older
flow-task / server / Kernel / Entity / Session.php
@root root 20 days ago 292 bytes ---
<?php

namespace Kernel\Entity;

class Session {
	use libs\DataContain;
	use libs\DataStorage;

	public function __construct() {
		$this -> set_tablename("session");

		$this -> set_fields([
			"id", "user_id", "token", "state", "create_at"
		]);
	}

	public function force_activity() {

	}
}