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

This commit is contained in:
Brikou CARRE 2011-04-15 19:04:53 +02:00
parent 28121e4a57
commit a83046f470

View File

@ -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]);
}