Próbuje dodać pole number lub double do strony tworzenia/edycji encji w SonataAdminBundle jednak mam pewien problem nie ważne jaką liczbę wpiszę dostaję błąd:
Expected argument of type "double", "double" given 500 Internal Server Error - InvalidArgumentException
Pliki:
Product.php
/** * @ORM\Column(type="decimal", scale=2) */ private $price;
ProductAdmin.php
$formMapper ->with('Content', ['class' => 'col-md-9']) ->add('price', NumberType::class)
Gdzie leży problem dopiero uczę się sonaty i symfony.
Z góry dziękuje za pomoc.