@@ -70,7 +70,7 @@ class Renderer {
}
$html .= static::renderBlock($block) . PHP_EOL;
}
-
+
return $html;
}
diff --git a/lib/Form/Util/FieldNameObfuscator.php b/lib/Form/Util/FieldNameObfuscator.php
index 4e29b49d89..928c2e826e 100644
--- a/lib/Form/Util/FieldNameObfuscator.php
+++ b/lib/Form/Util/FieldNameObfuscator.php
@@ -17,7 +17,7 @@ class FieldNameObfuscator {
public function deobfuscateFormPayload($data) {
$result = array();
- foreach($data as $key => $value) {
+ foreach ($data as $key => $value) {
$result[$this->deobfuscateField($key)] = $value;
}
return $result;
@@ -35,4 +35,4 @@ class FieldNameObfuscator {
return strpos($name, FieldNameObfuscator::OBFUSCATED_FIELD_PREFIX) === 0;
}
-}
\ No newline at end of file
+}
diff --git a/lib/Form/Util/Styles.php b/lib/Form/Util/Styles.php
index 3109620e90..26d8a33802 100644
--- a/lib/Form/Util/Styles.php
+++ b/lib/Form/Util/Styles.php
@@ -89,7 +89,7 @@ EOL;
$styles = new CSSParser($this->stylesheet);
$styles = $styles->parse();
$formatted_styles = array();
- foreach($styles->getAllDeclarationBlocks() as $style_declaration) {
+ foreach ($styles->getAllDeclarationBlocks() as $style_declaration) {
$selectors = array_map(function($selector) use ($prefix) {
return sprintf('%s %s', $prefix, $selector->__toString());
}, $style_declaration->getSelectors());
diff --git a/lib/Form/Widget.php b/lib/Form/Widget.php
index 6b5ecb5705..bcc93eccac 100644
--- a/lib/Form/Widget.php
+++ b/lib/Form/Widget.php
@@ -213,7 +213,7 @@ EOL;