From: Jan Schneider Date: Thu, 3 Jun 2010 10:37:04 +0000 (+0200) Subject: Fix parse errors. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=2a5a5a5aab208bb5dc30fb5419427fb87c22e597;p=horde.git Fix parse errors. --- 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; }