Log.php 467 B

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