소스 검색

added missing getName() methods to Types

Fabien Potencier 14 년 전
부모
커밋
03cc2ae87b
2개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      Configurator/Form/DoctrineStepType.php
  2. 5 0
      Configurator/Form/SecretStepType.php

+ 5 - 0
Configurator/Form/DoctrineStepType.php

@@ -37,4 +37,9 @@ class DoctrineStepType extends AbstractType
             ))
             ))
         ;
         ;
     }
     }
+
+    public function getName()
+    {
+        return 'distributionbundle_doctrine_step';
+    }
 }
 }

+ 5 - 0
Configurator/Form/SecretStepType.php

@@ -25,4 +25,9 @@ class SecretStepType extends AbstractType
     {
     {
         $builder->add('secret', 'text');
         $builder->add('secret', 'text');
     }
     }
+
+    public function getName()
+    {
+        return 'distributionbundle_secret_step';
+    }
 }
 }