matomo / core /Db /TransactionalDatabaseInterface.php
Leon4gr45's picture
Upload source files chunk 37
60d444f verified
Raw
History Blame Contribute Delete
394 Bytes
<?php
namespace Piwik\Db;
interface TransactionalDatabaseInterface
{
public function getCurrentTransactionIsolationLevelForSession(): string;
public function setTransactionIsolationLevel(string $level): void;
public function getSupportsTransactionLevelForNonLockingReads(): ?bool;
public function setSupportsTransactionLevelForNonLockingReads(?bool $supports = null): void;
}