Doctrine\OXM\Types\Type::convertToPHPValue PHP Method

convertToPHPValue() public method

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