We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a8003e commit 0fb1664Copy full SHA for 0fb1664
src/Symfony/Component/Form/Form.php
@@ -1137,19 +1137,4 @@ private function viewToNorm($value)
1137
1138
return $value;
1139
}
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
- }
1155
0 commit comments