Skip to content

Commit

Permalink
Update Model::saveAssociated() documentation
Browse files Browse the repository at this point in the history
Fixes #2492
  • Loading branch information
markstory committed Jan 20, 2012
1 parent c95ab28 commit eb101b9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/Cake/Model/Model.php
Expand Up @@ -2018,11 +2018,11 @@ public function validateMany($data, $options = array()) {
*
* #### Options
*
* - validate: Set to false to disable validation, true to validate each record before saving,
* 'first' to validate *all* records before any are saved (default),
* - atomic: If true (default), will attempt to save all records in a single transaction.
* - `validate` Set to false to disable validation, true to validate each record before saving,
* 'first' to validate *all* records before any are saved. Defaults to `true`.
* - `atomic` If true (default), will attempt to save all records in a single transaction.
* Should be set to false if database/table does not support transactions.
* - fieldList: Equivalent to the $fieldList parameter in Model::save()
* - `fieldList` Equivalent to the $fieldList parameter in Model::save()
*
* @param array $data Record data to save. This should be an array indexed by association name.
* @param array $options Options to use when saving record data, See $options above.
Expand Down

0 comments on commit eb101b9

Please sign in to comment.