| 12345678910111213141516171819202122232425262728 |
- <?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;
- }
- }
|