for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Platforms;
final class TrimMode
{
/** @var int */
const UNSPECIFIED = 0;
const LEADING = 1;
const TRAILING = 2;
const BOTH = 3;
private function __construct()
}