Log.php 590 B

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