
<center><h2><strong>Ubuntu</strong></h2>
­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?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;
}
