Formatting fixes.
This commit is contained in:
parent
2e16d60601
commit
7b321a215d
1 changed files with 3 additions and 3 deletions
|
@ -58,12 +58,12 @@ class Doctrine_Template_Listener_Timestampable extends Doctrine_Record_Listener
|
||||||
*/
|
*/
|
||||||
public function preInsert(Doctrine_Event $event)
|
public function preInsert(Doctrine_Event $event)
|
||||||
{
|
{
|
||||||
if(!$this->_options['created']['disabled']) {
|
if( ! $this->_options['created']['disabled']) {
|
||||||
$createdName = $this->_options['created']['name'];
|
$createdName = $this->_options['created']['name'];
|
||||||
$event->getInvoker()->$createdName = $this->getTimestamp('created');
|
$event->getInvoker()->$createdName = $this->getTimestamp('created');
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!$this->_options['updated']['disabled']) {
|
if( ! $this->_options['updated']['disabled']) {
|
||||||
$updatedName = $this->_options['updated']['name'];
|
$updatedName = $this->_options['updated']['name'];
|
||||||
$event->getInvoker()->$updatedName = $this->getTimestamp('updated');
|
$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)
|
public function preUpdate(Doctrine_Event $event)
|
||||||
{
|
{
|
||||||
if(!$this->_options['updated']['disabled']) {
|
if( ! $this->_options['updated']['disabled']) {
|
||||||
$updatedName = $this->_options['updated']['name'];
|
$updatedName = $this->_options['updated']['name'];
|
||||||
$event->getInvoker()->$updatedName = $this->getTimestamp('updated');
|
$event->getInvoker()->$updatedName = $this->getTimestamp('updated');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue