Skip to content

[Form] Make transform methods public #3514

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/Symfony/Component/Form/Form.php
Original file line number Diff line number Diff line change
Expand Up @@ -947,7 +947,7 @@ public function createView(FormView $parent = null)
*
* @return string
*/
private function appToNorm($value)
public function appToNorm($value)
{
foreach ($this->normTransformers as $transformer) {
$value = $transformer->transform($value);
Expand All @@ -963,7 +963,7 @@ private function appToNorm($value)
*
* @return mixed
*/
private function normToApp($value)
public function normToApp($value)
{
for ($i = count($this->normTransformers) - 1; $i >= 0; --$i) {
$value = $this->normTransformers[$i]->reverseTransform($value);
Expand All @@ -979,7 +979,7 @@ private function normToApp($value)
*
* @return string
*/
private function normToClient($value)
public function normToClient($value)
{
if (!$this->clientTransformers) {
// Scalar values should always be converted to strings to
Expand All @@ -1001,7 +1001,7 @@ private function normToClient($value)
*
* @return mixed
*/
private function clientToNorm($value)
public function clientToNorm($value)
{
if (!$this->clientTransformers) {
return '' === $value ? null : $value;
Expand Down