1
0
mirror of synced 2025-03-21 23:43:53 +03:00
This commit is contained in:
zYne 2007-09-20 22:16:34 +00:00
parent 990f011ed6
commit 29ff0dee02

View File

@ -39,7 +39,7 @@ class Doctrine_Record_Filter_Standard extends Doctrine_Record_Filter
* *
* @param mixed $name name of the property or related component * @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 . '\'.'); 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 * @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 . '\'.'); throw new Doctrine_Record_Exception('Unknown record property / related component \'' . $key . '\'.');
} }