Log.php 616 B

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