*/ class Configuration extends BaseForm { protected function buildForm() { $this->formBuilder ->add( DHL::WEBSERVICE_URL, 'text', [ 'constraints' => [new NotBlank()], 'label' => $this->translator->trans('DHL tracking URL', [], DHL::DOMAIN_NAME), 'label_attr' => [ 'help' => $this->translator->trans('This is the URL of the DHL tracking service.', [], DHL::DOMAIN_NAME) ] ] ); } }