Doctrine\ODM\MongoDB\Mapping\Types\Type::convertToDatabaseValue PHP Method

convertToDatabaseValue() public method

Converts a value from its PHP representation to its database representation of this type.
public convertToDatabaseValue ( mixed $value ) : mixed
$value mixed The value to convert.
return mixed The database representation of the value.
    public function convertToDatabaseValue($value)
    {
        return $value;
    }