ok

Mini Shell

Direktori : /home2/selectio/www/limpiar.in.net/install/vendor/doctrine/dbal/src/Types/
Upload File :
Current File : //home2/selectio/www/limpiar.in.net/install/vendor/doctrine/dbal/src/Types/AsciiStringType.php

<?php

declare(strict_types=1);

namespace Doctrine\DBAL\Types;

use Doctrine\DBAL\ParameterType;
use Doctrine\DBAL\Platforms\AbstractPlatform;

final class AsciiStringType extends StringType
{
    /**
     * {@inheritdoc}
     */
    public function getSQLDeclaration(array $column, AbstractPlatform $platform): string
    {
        return $platform->getAsciiStringTypeDeclarationSQL($column);
    }

    public function getBindingType(): int
    {
        return ParameterType::ASCII;
    }

    public function getName(): string
    {
        return Types::ASCII_STRING;
    }
}

Zerion Mini Shell 1.0