/
home
/
obinna
/
html
/
mixchief_app
/
vendor
/
symfony
/
form
/
Extension
/
Core
/
DataTransformer
/
Upload File
HOME
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Form\Extension\Core\DataTransformer; use Symfony\Component\Form\DataTransformerInterface; use Symfony\Component\Form\Exception\TransformationFailedException; class StringToFloatTransformer implements DataTransformerInterface { private $scale; public function __construct(int $scale = null) { $this->scale = $scale; } /** * @param mixed $value * * @return float|null */ public function transform($value) { if (null === $value) { return null; } if (!\is_string($value) || !is_numeric($value)) { throw new TransformationFailedException('Expected a numeric string.'); } return (float) $value; } /** * @param mixed $value * * @return string|null */ public function reverseTransform($value) { if (null === $value) { return null; } if (!\is_int($value) && !\is_float($value)) { throw new TransformationFailedException('Expected a numeric.'); } if ($this->scale > 0) { return number_format((float) $value, $this->scale, '.', ''); } return (string) $value; } }