Development

Changeset 12181

You must first sign up to be able to contribute.

Changeset 12181

Show
Ignore:
Timestamp:
10/14/08 18:26:34 (2 months ago)
Author:
Kris.Wallsmith
Message:

[1.2] Updated comments for Propel 1.3

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/sfPropelPlugin/trunk/lib/form/sfFormPropel.class.php

    r12165 r12181  
    6060   * Returns the default connection for the current model. 
    6161   * 
    62    * @return Connection A database connection 
     62   * @return PropelPDO A database connection 
    6363   */ 
    6464  public function getConnection() 
     
    120120   * @param  array      $taintedValues    An array of tainted values to use to bind the form 
    121121   * @param  array      $taintedFiles     An array of uploaded files (in the $_FILES or $_GET format) 
    122    * @param  Connection $con              An optional Propel Connection object 
     122   * @param  PropelPDO  $con              An optional PropelPDO object 
    123123   * 
    124124   * @return Boolean    true if the form is valid, false otherwise 
     
    144144   * If the form is not valid, it throws an sfValidatorError. 
    145145   * 
    146    * @param Connection $con An optional Connection object 
     146   * @param PropelPDO $con An optional PropelPDO object 
    147147   * 
    148148   * @return BaseObject The current saved object 
     
    221221      catch (Exception $e) 
    222222      { 
    223         // no a "real" column of this object 
     223        // not a "real" column of this object 
    224224        if (!method_exists($this, $method = sprintf('update%sColumn', self::camelize($field)))) 
    225225        { 
     
    255255   * Updates the associated i18n objects values. 
    256256   * 
    257    * @param Connection $con An optional Connection object 
     257   * @param PropelPDO $con An optional PropelPDO object 
    258258   */ 
    259259  public function updateI18nObjects() 
     
    338338   * this is the method to override. 
    339339   * 
    340    * @param Connection $con An optional Connection object 
     340   * @param PropelPDO $con An optional PropelPDO object 
    341341   */ 
    342342  protected function doSave($con = null)