From 95b7b1a493bc4442c59942aa2b6fdf215887677f Mon Sep 17 00:00:00 2001 From: Nagayama Osamu Date: Fri, 23 May 2014 13:14:29 +0900 Subject: [PATCH] method chain broken --- paris.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/paris.php b/paris.php index 4441ce1a..843fd831 100644 --- a/paris.php +++ b/paris.php @@ -427,6 +427,7 @@ public function get($property) { */ public function set($property, $value = null) { $this->orm->set($property, $value); + return $this; } /** @@ -436,6 +437,7 @@ public function set($property, $value = null) { */ public function set_expr($property, $value = null) { $this->orm->set_expr($property, $value); + return $this; } /**