From 7b321a215d9c9263c6f370935fc3133ede132062 Mon Sep 17 00:00:00 2001 From: "Jonathan.Wage" <Jonathan.Wage@625475ce-881a-0410-a577-b389adb331d8> Date: Wed, 19 Dec 2007 23:35:18 +0000 Subject: [PATCH] Formatting fixes. --- lib/Doctrine/Template/Listener/Timestampable.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Doctrine/Template/Listener/Timestampable.php b/lib/Doctrine/Template/Listener/Timestampable.php index cbb96da3c..aaf4c7691 100644 --- a/lib/Doctrine/Template/Listener/Timestampable.php +++ b/lib/Doctrine/Template/Listener/Timestampable.php @@ -58,12 +58,12 @@ class Doctrine_Template_Listener_Timestampable extends Doctrine_Record_Listener */ public function preInsert(Doctrine_Event $event) { - if(!$this->_options['created']['disabled']) { + if( ! $this->_options['created']['disabled']) { $createdName = $this->_options['created']['name']; $event->getInvoker()->$createdName = $this->getTimestamp('created'); } - if(!$this->_options['updated']['disabled']) { + if( ! $this->_options['updated']['disabled']) { $updatedName = $this->_options['updated']['name']; $event->getInvoker()->$updatedName = $this->getTimestamp('updated'); } @@ -77,7 +77,7 @@ class Doctrine_Template_Listener_Timestampable extends Doctrine_Record_Listener */ public function preUpdate(Doctrine_Event $event) { - if(!$this->_options['updated']['disabled']) { + if( ! $this->_options['updated']['disabled']) { $updatedName = $this->_options['updated']['name']; $event->getInvoker()->$updatedName = $this->getTimestamp('updated'); }