Вход Регистрация
Файл: vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/TextType.php
Строк: 32
<?php

namespace DoctrineDBALTypes;

use 
DoctrineDBALPlatformsAbstractPlatform;

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 $columnAbstractPlatform $platform)
    {
        return 
$platform->getClobTypeDeclarationSQL($column);
    }

    
/**
     * {@inheritdoc}
     */
    
public function convertToPHPValue($valueAbstractPlatform $platform)
    {
        return 
is_resource($value) ? stream_get_contents($value) : $value;
    }

    
/**
     * {@inheritdoc}
     */
    
public function getName()
    {
        return 
Types::TEXT;
    }
}
Онлайн: 1
Реклама