aboutsummaryrefslogtreecommitdiff
path: root/app/Models/Log.php
blob: 7760e76ca97f6d5301c3b0d71658e025d7cd4cd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
declare(strict_types=1);

class FreshRSS_Log extends Minz_Model {

	private string $date;
	private string $level;
	private string $information;

	public function date(): string {
		return $this->date;
	}
	public function level(): string {
		return $this->level;
	}
	public function info(): string {
		return $this->information;
	}
	public function _date(string $date): void {
		$this->date = $date;
	}
	public function _level(string $level): void {
		$this->level = $level;
	}
	public function _info(string $information): void {
		$this->information = $information;
	}
}