8000 minor #14896 [Form] Fix call to removed method (BC broken in 2.3) (ta… · symfony/symfony@a39dafa · GitHub
[go: up one dir, main page]

Skip to content 8000

Commit a39dafa

Browse files
committed
minor #14896 [Form] Fix call to removed method (BC broken in 2.3) (taueres)
This PR was merged into the 2.3 branch. Discussion ---------- [Form] Fix call to removed method (BC broken in 2.3) ResolvedFormType#getTypeExtensions() was calling method AbstractType#getExtensions() which has been removed in commit b3081e8 | Q | A | ------------- | --- | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - Commits ------- fa9da42 [Form] Fix call to removed method (BC broken in 2.3)
2 parents b1003d5 + fa9da42 commit a39dafa

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/Symfony/Component/Form/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)
0