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'); }