for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CodexShaper\DBM\Database\Types\Common;
use Doctrine\DBAL\Types\DecimalType as DoctrineDecimalType;
class NumericType extends DoctrineDecimalType
{
const NAME = 'numeric';
public function getName()
return static::NAME;
}