Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | protected function configureFormFields(FormMapper $formMapper) |
||
24 | { |
||
25 | $formMapper |
||
26 | ->with('Customer', ['class' => 'col-lg-12']) |
||
27 | ->add('firstName') |
||
28 | ->add('lastName') |
||
29 | ->add('email') |
||
30 | ->add('facebookId') |
||
31 | //->add('apiKey') |
||
32 | ->add('apiKey', 'text', ['attr' => ['readonly' => true]]) |
||
33 | ->add('orders') |
||
34 | ->end() |
||
35 | ; |
||
36 | } |
||
37 | |||
72 |