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/StringType.php |
<?php namespace Doctrine\DBAL\Types; use Doctrine\DBAL\Platforms\AbstractPlatform; /** * Type that maps an SQL VARCHAR to a PHP string. */ class StringType extends Type { /** * {@inheritdoc} */ public function getSQLDeclaration(array $column, AbstractPlatform $platform) { return $platform->getStringTypeDeclarationSQL($column); } /** * {@inheritdoc} */ public function getName() { return Types::STRING; } }