Changeset View
Changeset View
Standalone View
Standalone View
src/aphront/storage/connection/AphrontDatabaseTransactionState.php
| <?php | <?php | ||||
| /** | /** | ||||
| * Represents current transaction state of a connection. | * Represents current transaction state of a connection. | ||||
| */ | */ | ||||
| final class AphrontDatabaseTransactionState { | final class AphrontDatabaseTransactionState extends Phobject { | ||||
| private $depth = 0; | private $depth = 0; | ||||
| private $readLockLevel = 0; | private $readLockLevel = 0; | ||||
| private $writeLockLevel = 0; | private $writeLockLevel = 0; | ||||
| public function getDepth() { | public function getDepth() { | ||||
| return $this->depth; | return $this->depth; | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 91 Lines • Show Last 20 Lines | |||||