Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit c6b1c74

Browse filesBrowse files
committed
feature #9837 [Form] added getter to transformer chain (cordoval)
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
2 parents 7a9ab2c + 3565d96 commit c6b1c74
Copy full SHA for c6b1c74

File tree

Expand file treeCollapse file tree

1 file changed

+8
-0
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+8
-0
lines changed

‎src/Symfony/Component/Form/Extension/Core/DataTransformer/DataTransformerChain.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Form/Extension/Core/DataTransformer/DataTransformerChain.php
+8Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,4 +83,12 @@ public function reverseTransform($value)
8383

8484
return $value;
8585
}
86+
87+
/**
88+
* @return DataTransformerInterface[]
89+
*/
90+
public function getTransformers()
91+
{
92+
return $this->transformers;
93+
}
8694
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.