Use a protected method to get all the flags of a transaction.

This commit is contained in:
Daniele Alessandri
2011-08-24 11:46:07 +02:00
parent 7241fe6419
commit f085d2f97d
@@ -35,6 +35,10 @@ class MultiExecContext {
$this->_state = $flags;
}
protected function getState() {
return $this->_state;
}
protected function flagState($flags) {
$this->_state |= $flags;
}