<?php

/**
 * Company
 * 
 * This class has been auto-generated by the Doctrine ORM Framework
 * 
 * @package    okey
 * @subpackage model
 * @author     Your name here
 * @version    SVN: $Id: Builder.php 7490 2010-03-29 19:53:27Z jwage $
 */
class Legal extends BaseLegal
{
      public function save(Doctrine_Connection $conn = null)
  {
    if ($this->isNew()){
      $this->setPublishedAt(date('Y-m-d H:i:s'));
    }
    return parent::save($conn);
  }
}