Your IP : 216.73.216.43


Current Path : /proc/thread-self/root/var/www/surf/TYPO3/vendor/doctrine/dbal/src/Platforms/
Upload File :
Current File : //proc/thread-self/root/var/www/surf/TYPO3/vendor/doctrine/dbal/src/Platforms/TrimMode.php

<?php

declare(strict_types=1);

namespace Doctrine\DBAL\Platforms;

final class TrimMode
{
    public const UNSPECIFIED = 0;

    public const LEADING = 1;

    public const TRAILING = 2;

    public const BOTH = 3;

    /** @codeCoverageIgnore */
    private function __construct()
    {
    }
}