Test Failed
Push — master ( 2160b5...3d76f3 )
by David
04:17
created

SkuskuProductButtonsType   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 10
rs 10
c 0
b 0
f 0
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A buildForm() 0 2 1
A buildView() 0 3 1
1
<?php
2
3
namespace GGGGino\SkuskuCartBundle\Form\Type;
4
5
use Symfony\Component\Form\AbstractType;
6
use Symfony\Component\Form\FormBuilderInterface;
7
use Symfony\Component\Form\FormInterface;
8
use Symfony\Component\Form\FormView;
9
10
class SkuskuProductButtonsType extends AbstractType
11
{
12
    public function buildForm(FormBuilderInterface $builder, array $options)
13
    {
14
        //var_dump($options);die($this->getBlockPrefix());
15
    }
16
17
    public function buildView(FormView $view, FormInterface $form, array $options)
18
    {
19
        parent::buildView($view, $form, $options); // TODO: Change the autogenerated stub
20
    }
21
}