TakeCustomerAccountForm   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 20
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 2
c 0
b 0
f 0
lcom 0
cbo 0
dl 0
loc 20
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getName() 0 4 1
A buildForm() 0 3 1
1
<?php
2
/*************************************************************************************/
3
/*      This file is part of the module TakeCustomerAccount                          */
4
/*                                                                                   */
5
/*      Copyright (c) OpenStudio                                                     */
6
/*      email : [email protected]                                                       */
7
/*      web : http://www.thelia.net                                                  */
8
/*                                                                                   */
9
/*      For the full copyright and license information, please view the LICENSE.txt  */
10
/*      file that was distributed with this source code.                             */
11
/*************************************************************************************/
12
13
namespace TakeCustomerAccount\Form;
14
15
use Thelia\Form\BaseForm;
16
17
/**
18
 * Class TakeCustomerAccountForm
19
 * @package TakeCustomerAccount\Form
20
 * @author Gilles Bourgeat <[email protected]>
21
 */
22
class TakeCustomerAccountForm extends BaseForm
23
{
24
    /**
25
     * @return string the name of you form. This name must be unique
26
     */
27
    public function getName()
28
    {
29
        return 'take_customer_account';
30
    }
31
32
    /**
33
     *
34
     * in this function you add all the fields you need for your Form.
35
     * Form this you have to call add method on $this->formBuilder attribute :
36
     *
37
     */
38
    protected function buildForm()
39
    {
40
    }
41
}
42