for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of AppName.
*
* (c) Monofony
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Form\Type\Customer;
use Sylius\Bundle\ResourceBundle\Form\Type\AbstractResourceType;
use Symfony\Component\Form\Extension\Core\Type\TextType;
use Symfony\Component\Form\FormBuilderInterface;
final class CustomerRegistrationType extends AbstractResourceType
{
/**
* {@inheritdoc}
public function buildForm(FormBuilderInterface $builder, array $options = [])
parent::buildForm($builder, $options);
$builder
->add('firstName', TextType::class, [
'label' => 'sylius.form.customer.first_name',
])
->add('lastName', TextType::class, [
'label' => 'sylius.form.customer.last_name',
->add('phoneNumber', TextType::class, [
'required' => false,
'label' => 'sylius.form.customer.phone_number',
;
}
public function getParent()
return CustomerSimpleRegistrationType::class;
public function getBlockPrefix()
return 'sylius_customer_registration';