Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total
0.00%
0 / 1
0.00%
0 / 2
CRAP
0.00%
0 / 10
Profile
0.00%
0 / 1
0.00%
0 / 2
6
0.00%
0 / 10
 buildForm(FormBuilderInterface $builder, array $options)
0.00%
0 / 1
2
0.00%
0 / 6
 getName()
0.00%
0 / 1
2
0.00%
0 / 4
<?php
namespace BodyRep\Form;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
class Profile extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder->add('fullname', 'text');
//$builder->add('newpass1', 'text');
//$builder->add('newpass2', 'text');
}
public function getName()
{
return 'profile';
}
}