8000 fix rename resolve type function · symfony/symfony@6d22d5c · GitHub
[go: up one dir, main page]

Skip to content

Commit 6d22d5c

Browse files
committed
fix rename resolve type function
1 parent 1bd307a commit 6d22d5c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Symfony/Component/Form/FormRegistry.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public function getType($name)
8888
}
8989
}
9090

91-
$this->types[$name] = $this->resolveAndAddType($type);
91+
$this->types[$name] = $this->resolveType($type);
9292
}
9393

9494
return $this->types[$name];
@@ -102,7 +102,7 @@ public function getType($name)
102102
*
103103
* @return ResolvedFormTypeInterface The resolved type.
104104
*/
105-
private function resolveAndAddType(FormTypeInterface $type)
105+
private function resolveType(FormTypeInterface $type)
106106
{
107107
$typeExtensions = array();
108108
$parentType = $type->getParent();

0 commit comments

Comments
 (0)
0