ok
Direktori : /proc/self/root/home2/selectio/www/limpiar.in.net/vendor/doctrine/dbal/src/Types/ |
Current File : //proc/self/root/home2/selectio/www/limpiar.in.net/vendor/doctrine/dbal/src/Types/TextType.php |
<?php namespace Doctrine\DBAL\Types; use Doctrine\DBAL\Platforms\AbstractPlatform; use function is_resource; use function stream_get_contents; /** * Type that maps an SQL CLOB to a PHP string. */ class TextType extends Type { /** * {@inheritdoc} */ public function getSQLDeclaration(array $column, AbstractPlatform $platform) { return $platform->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; } }