| 1 | <?php |
||
| 22 | class SqlSession implements TransactionalSession |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * The database abstraction layer. |
||
| 26 | * |
||
| 27 | * @var \PDO |
||
| 28 | */ |
||
| 29 | private $pdo; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Constructor. |
||
| 33 | * |
||
| 34 | * @param \PDO $pdo The database abstraction layer |
||
| 35 | */ |
||
| 36 | public function __construct(\PDO $pdo) |
||
| 40 | |||
| 41 | /** |
||
| 42 | * {@inheritdoc} |
||
| 43 | */ |
||
| 44 | public function executeAtomically(callable $operation) |
||
| 59 | } |
||
| 60 |