File io/db/dbms/Doctrine/DBAL/Types/TextType.php
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27:
<?php
/**
* Type that maps an SQL CLOB to a PHP string.
* @package Doctrine
* @subpackage DBAL\Types
* @license https://www.gnu.org/licenses/lgpl-2.1.fr.html LGPL 2.1
* @link https://www.doctrine-project.org
* @version PHPBoost 5.2 - last update: 2013 01 01
* @since PHPBoost 4.0 - 2013 01 01
*/
class TextType extends Type
{
/** @override */
public function getSqlDeclaration(array $fieldDeclaration, AbstractPlatform $platform)
{
return $platform->getClobTypeDeclarationSql($fieldDeclaration);
}
public function getName()
{
return 'text';
}
}
?>