Parcourir la source

fixed regex (we don't need '?')

Brikou CARRE il y a 14 ans
Parent
commit
a83046f470
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      src/Symfony/Component/Form/Type/AbstractType.php

+ 1 - 1
src/Symfony/Component/Form/Type/AbstractType.php

@@ -47,7 +47,7 @@ abstract class AbstractType implements FormTypeInterface
 
     public function getName()
     {
-        if (preg_match('/\\\\([a-z]+)(?:Form|Type)?$/im', get_class($this), $matches)) {
+        if (preg_match('/\\\\([a-z]+)(?:Form|Type)$/im', get_class($this), $matches)) {
             $name = strtolower($matches[1]);
         }