vendor/sylius/sylius/src/Sylius/Bundle/OrderBundle/Form/Type/CartItemType.php line 21
<?php
/*
* This file is part of the Sylius package.
*
* (c) Paweł Jędrzejewski
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Sylius\Bundle\OrderBundle\Form\Type;
use Sylius\Bundle\ResourceBundle\Form\Type\AbstractResourceType;
use Symfony\Component\Form\DataMapperInterface;
use Symfony\Component\Form\Extension\Core\Type\IntegerType;
use Symfony\Component\Form\FormBuilderInterface;
class CartItemType extends AbstractResourceType
{
public function __construct(
string $dataClass,
array $validationGroups,
private DataMapperInterface $dataMapper,
) {
parent::__construct($dataClass, $validationGroups);
}
public function buildForm(FormBuilderInterface $builder, array $options): void
{
$builder
->add('quantity', IntegerType::class, [
'attr' => ['min' => 1],
'label' => 'sylius.ui.quantity',
])
->setDataMapper($this->dataMapper)
;
}
public function getBlockPrefix(): string
{
return 'sylius_cart_item';
}
}