/home/techb158/immovalet.com/vendor/doctrine/dbal/src/Types
Edit: /home/techb158/immovalet.com/vendor/doctrine/dbal/src/Types/BooleanType.php (1018B)
getBooleanTypeDeclarationSQL($column);
}
/**
* {@inheritdoc}
*/
public function convertToDatabaseValue($value, AbstractPlatform $platform)
{
return $platform->convertBooleansToDatabaseValue($value);
}
/**
* {@inheritdoc}
*/
public function convertToPHPValue($value, AbstractPlatform $platform)
{
return $platform->convertFromBoolean($value);
}
/**
* {@inheritdoc}
*/
public function getName()
{
return Types::BOOLEAN;
}
/**
* {@inheritdoc}
*/
public function getBindingType()
{
return ParameterType::BOOLEAN;
}
}