Sindbad~EG File Manager

Current Path : /opt/nginxhttpd_/vendor/doctrine/dbal/src/Types/
Upload File :
Current File : //opt/nginxhttpd_/vendor/doctrine/dbal/src/Types/FloatType.php

<?php

namespace Doctrine\DBAL\Types;

use Doctrine\DBAL\Platforms\AbstractPlatform;

class FloatType extends Type
{
    /**
     * {@inheritDoc}
     */
    public function getName()
    {
        return Types::FLOAT;
    }

    /**
     * {@inheritDoc}
     */
    public function getSQLDeclaration(array $column, AbstractPlatform $platform)
    {
        return $platform->getFloatDeclarationSQL($column);
    }

    /**
     * {@inheritDoc}
     *
     * @param T $value
     *
     * @return (T is null ? null : float)
     *
     * @template T
     */
    public function convertToPHPValue($value, AbstractPlatform $platform)
    {
        return $value === null ? null : (float) $value;
    }
}

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists