Skip to content

Instantly share code, notes, and snippets.

@joshtronic
Created December 6, 2012 20:25
Show Gist options
  • Save joshtronic/4228026 to your computer and use it in GitHub Desktop.
Save joshtronic/4228026 to your computer and use it in GitHub Desktop.
PICKLES Transactions
<?php
$transaction = new Transaction();
$model1 = new Model1();
$model1->record['foo'] = 'bar';
$model1->queue();
$transaction->queue($model1);
$model2 = new Model1();
$model2->record['spam'] = 'eggs';
$model2->queue();
$transaction->queue($model2);
$transaction->commit();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment