Skip to content

Commit c6b1c74

Browse 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

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

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

+8
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)