Created
December 6, 2012 20:25
-
-
Save joshtronic/4228026 to your computer and use it in GitHub Desktop.
PICKLES Transactions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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