From 2a5a5a5aab208bb5dc30fb5419427fb87c22e597 Mon Sep 17 00:00:00 2001 From: Jan Schneider Date: Thu, 3 Jun 2010 12:37:04 +0200 Subject: [PATCH] Fix parse errors. --- framework/Group/lib/Horde/Group/SqlObject.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/Group/lib/Horde/Group/SqlObject.php b/framework/Group/lib/Horde/Group/SqlObject.php index e37be8fdf..95308b3ac 100644 --- a/framework/Group/lib/Horde/Group/SqlObject.php +++ b/framework/Group/lib/Horde/Group/SqlObject.php @@ -75,7 +75,7 @@ class Horde_Group_SqlObject extends Horde_Group_DataTreeObject * * @return mixed The value of the attribute, or null. */ - public get($attribute) + public function get($attribute) { return isset($this->data[$attribute]) ? $this->data[$attribute] @@ -88,7 +88,7 @@ class Horde_Group_SqlObject extends Horde_Group_DataTreeObject * @param string $attribute The attribute to set. * @param mixed $value The value for $attribute. */ - public set($attribute, $value) + public function set($attribute, $value) { $this->data[$attribute] = $value; } -- 2.11.0