Commit 0b0c41e1 authored by Benjamin Eberlei's avatar Benjamin Eberlei

DBAL-6 - Remove unnecessary code

parent 177903df
...@@ -34,16 +34,6 @@ class BlobType extends Type ...@@ -34,16 +34,6 @@ class BlobType extends Type
return $platform->getBlobTypeDeclarationSQL($fieldDeclaration); return $platform->getBlobTypeDeclarationSQL($fieldDeclaration);
} }
public function convertToDatabaseValue($value, AbstractPlatform $platform)
{
$hex='';
for ($i=0; $i < strlen($value); $i++) {
$hex .= dechex(ord($value[$i]));
}
return $value;
}
/** /**
* Converts a value from its database representation to its PHP representation * Converts a value from its database representation to its PHP representation
* of this type. * of this type.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment