1
0
mirror of synced 2025-01-18 06:21:40 +03:00
This commit is contained in:
zYne 2007-09-20 22:43:37 +00:00
parent b7e368a4df
commit f4eeb641c0

View File

@ -33,28 +33,6 @@
*/
abstract class Doctrine_Record_Filter
{
/**
* @var Doctrine_Record $_record the record object this filter belongs to
*/
protected $_record;
/**
* constructor
*
* @param Doctrine_Record $_record the record object this filter belongs to
*/
public function __construct(Doctrine_Record $record)
{
$this->_record = $record;
}
/**
* getRecord
*
* @return Doctrine_Record $_record the record object this filter belongs to
*/
public function getRecord()
{
return $this->_record;
}
/**
* filterSet
* defines an implementation for filtering the set() method of Doctrine_Record