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 NumericType extends Type
{
public const TYPE_NAME = 'numeric';
public function getSQLDeclaration(array $fieldDeclaration, AbstractPlatform $platform)
return static::TYPE_NAME;
}
public function getName(): string
return self::TYPE_NAME;