D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
self
/
root
/
proc
/
3023067
/
cwd
/
public_html
/
vendor
/
doctrine
/
dbal
/
src
/
Types
/
Filename :
StringType.php
back
Copy
<?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; } }