1
0
mirror of synced 2025-01-18 22:41:43 +03:00
This commit is contained in:
zYne 2007-06-17 17:57:08 +00:00
parent 0833fc572d
commit efb8fc9ed3
3 changed files with 0 additions and 25 deletions

View File

@ -61,15 +61,6 @@ class Doctrine_EventListener implements Doctrine_EventListener_Interface
public function onPreSave(Doctrine_Record $record)
{ }
public function onGetProperty(Doctrine_Record $record, $property, $value)
{
return $value;
}
public function onSetProperty(Doctrine_Record $record, $property, $value)
{
return $value;
}
public function onInsert(Doctrine_Record $record)
{ }
public function onPreInsert(Doctrine_Record $record)

View File

@ -1,13 +0,0 @@
<?php
/**
* an emtpy listener all components use this by default
* @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/
class Doctrine_EventListener_Empty extends Doctrine_EventListener
{ }

View File

@ -43,9 +43,6 @@ interface Doctrine_EventListener_Interface {
public function onSave(Doctrine_Record $record);
public function onPreSave(Doctrine_Record $record);
public function onGetProperty(Doctrine_Record $record, $property, $value);
public function onSetProperty(Doctrine_Record $record, $property, $value);
public function onInsert(Doctrine_Record $record);
public function onPreInsert(Doctrine_Record $record);