Completed
Push — master ( 429264...faaec3 )
by Paweł
25s
created

SummaryType::getName()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
c 1
b 1
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
/*
4
 * This file is part of the Sylius package.
5
 *
6
 * (c) Paweł Jędrzejewski
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Sylius\Bundle\CoreBundle\Form\Type\Checkout;
13
14
use Sylius\Bundle\ResourceBundle\Form\Type\AbstractResourceType;
15
use Symfony\Component\Form\FormBuilderInterface;
16
17
/**
18
 * @author Arkadiusz Krakowiak <[email protected]>
19
 */
20
class SummaryType extends AbstractResourceType
21
{
22
    /**
23
     * {@inheritdoc}
24
     */
25
    public function buildForm(FormBuilderInterface $builder, array $options)
26
    {
27
        $builder->add('notes', 'textarea', [
28
            'label' => 'sylius.form.notes',
29
            'required' => false,
30
        ]);
31
    }
32
33
    /**
34
     * {@inheritdoc}
35
     */
36
    public function getName()
37
    {
38
        return 'sylius_checkout_summary';
39
    }
40
}
41