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/BigIntType.php |
<?php namespace Doctrine\DBAL\Types; use Doctrine\DBAL\ParameterType; use Doctrine\DBAL\Platforms\AbstractPlatform; /** * Type that maps a database BIGINT to a PHP string. */ class BigIntType extends Type implements PhpIntegerMappingType { /** * {@inheritdoc} */ public function getName() { return Types::BIGINT; } /** * {@inheritdoc} */ public function getSQLDeclaration(array $column, AbstractPlatform $platform) { return $platform->getBigIntTypeDeclarationSQL($column); } /** * {@inheritdoc} */ public function getBindingType() { return ParameterType::STRING; } /** * {@inheritdoc} * * @param T $value * * @return (T is null ? null : string) * * @template T */ public function convertToPHPValue($value, AbstractPlatform $platform) { return $value === null ? null : (string) $value; } }