mirror of
https://gh.wpcy.net/https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2026-05-01 11:12:18 +08:00
13 lines
195 B
PHP
13 lines
195 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Doctrine\DBAL;
|
|
|
|
enum TransactionIsolationLevel
|
|
{
|
|
case READ_UNCOMMITTED;
|
|
case READ_COMMITTED;
|
|
case REPEATABLE_READ;
|
|
case SERIALIZABLE;
|
|
}
|