Neos\Flow\Persistence\Doctrine\DataTypes\ObjectArray::getSQLDeclaration PHP Method

getSQLDeclaration() public method

Gets the SQL declaration snippet for a field of this type.
public getSQLDeclaration ( array $fieldDeclaration, Doctrine\DBAL\Platforms\AbstractPlatform $platform ) : string
$fieldDeclaration array
$platform Doctrine\DBAL\Platforms\AbstractPlatform
return string
    public function getSQLDeclaration(array $fieldDeclaration, AbstractPlatform $platform)
    {
        return $platform->getBlobTypeDeclarationSQL($fieldDeclaration);
    }