Skip to content

Commit

Permalink
feature #9837 [Form] added getter to transformer chain (cordoval)
Browse files Browse the repository at this point in the history
This PR was merged into the 2.5-dev branch.

Discussion
----------

[Form] added getter to transformer chain

| Q             | A
| ------------- | ---
| Bug fix?      | no
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | #9503
| License       | MIT
| Doc PR        | na

Commits
-------

3565d96 added getter to transformer chain
  • Loading branch information
fabpot committed Dec 27, 2013
2 parents 7a9ab2c + 3565d96 commit c6b1c74
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,12 @@ public function reverseTransform($value)

return $value;
}

/**
* @return DataTransformerInterface[]
*/
public function getTransformers()
{
return $this->transformers;
}
}

0 comments on commit c6b1c74

Please sign in to comment.