summaryrefslogtreecommitdiff
path: root/vendor/doctrine/dbal/src/Platforms/TrimMode.php
blob: 31c237543fc0289e677ed7f0141243c7bd43a50f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

declare(strict_types=1);

namespace Doctrine\DBAL\Platforms;

enum TrimMode
{
    case UNSPECIFIED;
    case LEADING;
    case TRAILING;
    case BOTH;
}