for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CodexShaper\DBM\Database\Types\Sqlite;
use CodexShaper\DBM\Database\Types\Type;
use Doctrine\DBAL\Platforms\AbstractPlatform;
class RealType extends Type
{
const NAME = 'real';
public function getSQLDeclaration(array $field, AbstractPlatform $platform)
return 'real';
}