1
0
قرینه از https://github.com/matomo-org/matomo.git synced 2025-08-21 22:47:43 +00:00
Files
matomo/core/Db/TransactionalDatabaseInterface.php
2024-10-18 18:29:54 +02:00

12 خطوط
394 B
PHP

<?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;
}