for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Umbrellio\Postgres\Schema\Types;
use Doctrine\DBAL\Platforms\AbstractPlatform;
use Doctrine\DBAL\Types\Type;
class TsTzRangeType extends Type
{
public const TYPE_NAME = 'tstzrange';
public function getSQLDeclaration(array $column, AbstractPlatform $platform): string
return static::TYPE_NAME;
}
public function getName(): string
return self::TYPE_NAME;