Files
FreshRSS/app/Models/Log.php
Luc SANCHEZ 4a02352ccc applies several small optimizations (#5511)
declare(strict_types=1);
Co-authored-by: Luc <sanchezluc+freshrss@gmail.com>
2023-10-30 20:40:13 +01:00

32 lines
616 B
PHP

<?php
declare(strict_types=1);
class FreshRSS_Log extends Minz_Model {
/** @var string */
private $date;
/** @var string */
private $level;
/** @var string */
private $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;
}
}