mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-24 13:17:59 -05:00
* Require PHP 7.4+ https://github.com/FreshRSS/FreshRSS/discussions/5474 * Update Docker oldest Alpine 3.13 with PHP 7.4.26 * Add missing packets to Docker oldest * Update to typed properties https://php.net/migration74.new-features#migration74.new-features.core.typed-properties * More types
30 lines
578 B
PHP
30 lines
578 B
PHP
<?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;
|
|
}
|
|
}
|