Skip to content

Commit 0fb1664

Browse files
committed
[Form] Remove unused private method
1 parent 1a8003e commit 0fb1664

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

src/Symfony/Component/Form/Form.php

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1137,19 +1137,4 @@ private function viewToNorm($value)
11371137

11381138
return $value;
11391139
}
1140-
1141-
/**
1142-
* Utility function for indenting multi-line strings.
1143-
*
1144-
* @param string $string The string
1145-
* @param int $level The number of spaces to use for indentation
1146-
*
1147-
* @return string The indented string
1148-
*/
1149-
private static function indent($string, $level)
1150-
{
1151-
$indentation = str_repeat(' ', $level);
1152-
1153-
return rtrim($indentation.str_replace("\n", "\n".$indentation, $string), ' ');
1154-
}
11551140
}

0 commit comments

Comments
 (0)