4
0

Log.php 577 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. declare(strict_types=1);
  3. class FreshRSS_Log extends Minz_Model {
  4. private string $date;
  5. private string $level;
  6. private string $information;
  7. public function date(): string {
  8. return $this->date;
  9. }
  10. public function level(): string {
  11. return $this->level;
  12. }
  13. public function info(): string {
  14. return $this->information;
  15. }
  16. public function _date(string $date): void {
  17. $this->date = $date;
  18. }
  19. public function _level(string $level): void {
  20. $this->level = $level;
  21. }
  22. public function _info(string $information): void {
  23. $this->information = $information;
  24. }
  25. }