From 29ff0dee02d77d065bbbfab94937cb7d17531dcb Mon Sep 17 00:00:00 2001 From: zYne Date: Thu, 20 Sep 2007 22:16:34 +0000 Subject: [PATCH] --- lib/Doctrine/Record/Filter/Standard.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Doctrine/Record/Filter/Standard.php b/lib/Doctrine/Record/Filter/Standard.php index c18e9f8b7..2824aa1b4 100644 --- a/lib/Doctrine/Record/Filter/Standard.php +++ b/lib/Doctrine/Record/Filter/Standard.php @@ -39,7 +39,7 @@ class Doctrine_Record_Filter_Standard extends Doctrine_Record_Filter * * @param mixed $name name of the property or related component */ - abstract public function filterSet($key, $value) + public function filterSet($key, $value) { throw new Doctrine_Record_Exception('Unknown record property / related component \'' . $key . '\'.'); } @@ -49,7 +49,7 @@ class Doctrine_Record_Filter_Standard extends Doctrine_Record_Filter * * @param mixed $name name of the property or related component */ - abstract public function filterGet($key) + public function filterGet($key) { throw new Doctrine_Record_Exception('Unknown record property / related component \'' . $key . '\'.'); }