Page MenuHomeWickedGov Phorge

AsciiStringType.php
No OneTemporary

Size
582 B
Referenced Files
None
Subscribers
None

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;
}
}

File Metadata

Mime Type
text/x-php
Expires
Tue, Aug 18, 22:54 (14 h, 34 m ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
37/1d/827e8d7dd651114ae589f74aeb08
Default Alt Text
AsciiStringType.php (582 B)

Event Timeline