summaryrefslogtreecommitdiff
path: root/app/Models/Log.php
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2014-10-05 18:51:08 +0200
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2014-10-05 18:51:08 +0200
commitb5dee73ea0ab3cc24c4857ac102e9e78cf20ab92 (patch)
tree305145e4acbf3a69abf86e9c4a1e72506fe093f6 /app/Models/Log.php
parent9a0d01be0cb627b30424e9f938face34c6c3814d (diff)
Coding style
Remove spaces before parenthesis bis See https://github.com/marienfressinaud/FreshRSS/issues/655
Diffstat (limited to 'app/Models/Log.php')
-rw-r--r--app/Models/Log.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/app/Models/Log.php b/app/Models/Log.php
index d2794458b..df2de72ac 100644
--- a/app/Models/Log.php
+++ b/app/Models/Log.php
@@ -5,22 +5,22 @@ class FreshRSS_Log extends Minz_Model {
private $level;
private $information;
- public function date () {
+ public function date() {
return $this->date;
}
- public function level () {
+ public function level() {
return $this->level;
}
- public function info () {
+ public function info() {
return $this->information;
}
- public function _date ($date) {
+ public function _date($date) {
$this->date = $date;
}
- public function _level ($level) {
+ public function _level($level) {
$this->level = $level;
}
- public function _info ($information) {
+ public function _info($information) {
$this->information = $information;
}
}