Skip to content

Commit d460bd6

Browse files
committed
[Form] Fix call to removed method (BC broken in 2.3)
ResolvedFormType#getTypeExtensions() was calling method AbstractType#getExtensions() which has been removed in commit b3081e85a062abb8fc8a22f20a2b3289db2ff501 | Q | A | ------------- | --- | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | -
1 parent 2a92464 commit d460bd6

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

ResolvedFormType.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,6 @@ public function getInnerType()
9393
*/
9494
public function getTypeExtensions()
9595
{
96-
// BC
97-
if ($this->innerType instanceof AbstractType) {
98-
return $this->innerType->getExtensions();
99-
}
100-
10196
return $this->typeExtensions;
10297
}
10398

0 commit comments

Comments
 (0)