<?php namespace Lc\SovBundle\Component; class NumberComponent { public function round($price, $precision = 2) { return round((($price * 100)) / 100, $precision); } }