From efb8fc9ed300a39621b22f90ac032f5f7d61c2d2 Mon Sep 17 00:00:00 2001 From: zYne Date: Sun, 17 Jun 2007 17:57:08 +0000 Subject: [PATCH] --- lib/Doctrine/EventListener.php | 9 --------- lib/Doctrine/EventListener/Empty.php | 13 ------------- lib/Doctrine/EventListener/Interface.php | 3 --- 3 files changed, 25 deletions(-) delete mode 100644 lib/Doctrine/EventListener/Empty.php diff --git a/lib/Doctrine/EventListener.php b/lib/Doctrine/EventListener.php index 57f02eccb..8f0c831f6 100644 --- a/lib/Doctrine/EventListener.php +++ b/lib/Doctrine/EventListener.php @@ -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) diff --git a/lib/Doctrine/EventListener/Empty.php b/lib/Doctrine/EventListener/Empty.php deleted file mode 100644 index 7c6f11342..000000000 --- a/lib/Doctrine/EventListener/Empty.php +++ /dev/null @@ -1,13 +0,0 @@ - - */ -class Doctrine_EventListener_Empty extends Doctrine_EventListener -{ } diff --git a/lib/Doctrine/EventListener/Interface.php b/lib/Doctrine/EventListener/Interface.php index abc99ebae..35b7cab1b 100644 --- a/lib/Doctrine/EventListener/Interface.php +++ b/lib/Doctrine/EventListener/Interface.php @@ -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);