Sonata\Component\Currency\CurrencyDataTransformer::transform PHP Method

transform() public method

public transform ( $value )
    public function transform($value)
    {
        if ($value instanceof CurrencyInterface) {
            return $value->getLabel();
        }
        return $value;
    }