1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/freshrss_ynh.git synced 2024-09-03 18:36:33 +02:00
freshrss_ynh/sources/app/Models/Log.php

27 lines
467 B
PHP
Raw Normal View History

2014-07-23 15:52:50 +02:00
<?php
class FreshRSS_Log extends Minz_Model {
private $date;
private $level;
private $information;
2015-02-08 18:55:48 +01:00
public function date() {
2014-07-23 15:52:50 +02:00
return $this->date;
}
2015-02-08 18:55:48 +01:00
public function level() {
2014-07-23 15:52:50 +02:00
return $this->level;
}
2015-02-08 18:55:48 +01:00
public function info() {
2014-07-23 15:52:50 +02:00
return $this->information;
}
2015-02-08 18:55:48 +01:00
public function _date($date) {
2014-07-23 15:52:50 +02:00
$this->date = $date;
}
2015-02-08 18:55:48 +01:00
public function _level($level) {
2014-07-23 15:52:50 +02:00
$this->level = $level;
}
2015-02-08 18:55:48 +01:00
public function _info($information) {
2014-07-23 15:52:50 +02:00
$this->information = $information;
}
}