Skip to content

Commit

Permalink
[Form] Fix call to removed method (BC broken in 2.3)
Browse files Browse the repository at this point in the history
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        | -
  • Loading branch information
taueres committed Jun 6, 2015
1 parent b1003d5 commit fa9da42
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/Symfony/Component/Form/ResolvedFormType.php
Expand Up @@ -93,11 +93,6 @@ public function getInnerType()
*/
public function getTypeExtensions()
{
// BC
if ($this->innerType instanceof AbstractType) {
return $this->innerType->getExtensions();
}

return $this->typeExtensions;
}

Expand Down

0 comments on commit fa9da42

Please sign in to comment.