0byt3m1n1
Path:
/
data
/
applications
/
aps
/
typo3
/
12.4.7
/
standard
/
htdocs
/
vendor
/
doctrine
/
dbal
/
src
/
Types
/
[
Home
]
File: 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; } }