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

SkuskuProductButtonsType::buildView()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 3
dl 0
loc 3
rs 10
c 0
b 0
f 0
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
}