- <?php
- 
- namespace DcSiteBundle\Form\Type;
- 
- 
- use Symfony\Component\Form\Extension\Core\Type\TextType;
- 
- class GaClientIdType extends TextType
- {
-     public function getBlockPrefix()
-     {
-         return 'ga_client_id';
-     }
- 
-     public function getName()
-     {
-         return $this->getBlockPrefix();
-     }
- }
-