/home/techb158/immovalet.com/vendor/doctrine/dbal/src/Types
Edit: /home/techb158/immovalet.com/vendor/doctrine/dbal/src/Types/TextType.php (733B)
getClobTypeDeclarationSQL($column);
}
/**
* {@inheritdoc}
*/
public function convertToPHPValue($value, AbstractPlatform $platform)
{
return is_resource($value) ? stream_get_contents($value) : $value;
}
/**
* {@inheritdoc}
*/
public function getName()
{
return Types::TEXT;
}
}